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
  • Loading branch information
chienslation authored and psaren committed Jul 29, 2020
1 parent 6d80dc3 commit 103a998
Show file tree
Hide file tree
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
Expand Up @@ -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>
Expand Down
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
Expand Up @@ -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'
Expand Down
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
Expand Up @@ -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>
Expand Down
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
Expand Up @@ -8,7 +8,7 @@
class="img"
mode="widthFix"
/>
<Text
<text
v-else
class="at-icon at-icon-list"
/>
Expand All @@ -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>
Expand Down
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
Expand Up @@ -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
Expand Down
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
Expand Up @@ -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>
Expand Down

0 comments on commit 103a998

Please # to comment.