Skip to content
This repository was archived by the owner on Oct 27, 2021. It is now read-only.

Commit

Permalink
fix: 修复找不到 View、Text、Image 等模板的问题
Browse files Browse the repository at this point in the history
chienslation authored and psaren committed Jul 29, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 6d80dc3 commit 103a998
Showing 6 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions packages/taro-ui-vue-demo/src/pages/basic/color/index.vue
Original file line number Diff line number Diff line change
@@ -38,15 +38,15 @@
/>
</view>
<view class="color-item__info">
<Text class="name">
<text class="name">
{{ color.name }}
</Text>
<Text
</text>
<text
class="hex"
selectable
>
{{ color.hex }}
</Text>
</text>
</view>
</view>
</view>
2 changes: 1 addition & 1 deletion packages/taro-ui-vue-demo/src/pages/form/input/index.vue
Original file line number Diff line number Diff line change
@@ -184,7 +184,7 @@
:onChange="handleInput.bind(this, 'value14')"
>
<img v-if="env === 'WEB'" :src="verification_code" />
<Image v-else :src="verification_code" />
<image v-else :src="verification_code" />
</AtInput>
<AtInput
name='value15'
2 changes: 1 addition & 1 deletion packages/taro-ui-vue-demo/src/pages/index/index.vue
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@
</view>
</view>
<view class="module-list__arrow">
<Text class="at-icon at-icon-chevron-right" />
<text class="at-icon at-icon-chevron-right" />
</view>
</view>
</view>
8 changes: 4 additions & 4 deletions packages/taro-ui-vue-demo/src/pages/panel/index.vue
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
class="img"
mode="widthFix"
/>
<Text
<text
v-else
class="at-icon at-icon-list"
/>
@@ -25,10 +25,10 @@
class="component-list__item"
@tap="gotoComponent(item.id, currentId)"
>
<Text class="name">
<text class="name">
{{ `${item.id} ${item.name}` }}
</Text>
<Text class="at-icon at-icon-chevron-right" />
</text>
<text class="at-icon at-icon-chevron-right" />
</view>
</view>
</view>
2 changes: 1 addition & 1 deletion packages/taro-ui-vue-demo/src/pages/view/swiper/index.vue
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@
</view>
<view class='slider-list__item'>
<view class='slider-list__item-header'>
<Text>自动播放间隔时长(ms)</Text>
<text>自动播放间隔时长(ms)</text>
</view>
<view class='slider-list__item-body'>
<slider
8 changes: 4 additions & 4 deletions packages/taro-ui-vue/src/components/progress/index.vue
Original file line number Diff line number Diff line change
@@ -13,12 +13,12 @@
v-if="!isHidePercent"
class="at-progress__content"
>
<View v-if="!status || status === 'progress'">
<view v-if="!status || status === 'progress'">
{{ `${percent}%` }}
</View>
<View v-else>
</view>
<view v-else>
<view :class="iconClass()" />
</View>
</view>
</view>
</view>
</template>

0 comments on commit 103a998

Please sign in to comment.