-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Closed
Labels
Description
Issues, such as shown in the title
An example:
<template lang="jade">
.select-package
dl(v-repeat="items")
template(v-if="groupName=='1个号码套餐'")
template(v-if="isFirstMonth")
dt {{groupName}}
dd(v-repeat="item" v-on="click:onChoose(itemId,skuId,isFirstMonth)")
span {{skuName}}
template(v-if="!isFirstMonth")
dt {{groupName}}
dd(v-repeat="item" v-on="click:onChoose(itemId,skuId,isFirstMonth)" v-show="skuId!=='0'")
span {{skuName}}
</template>
For example shown,template(v-if="isFirstMonth")
and template(v-if="!isFirstMonth")
inside the content will not be rendered in ios, but Android is ok.