当前位置:   article > 正文

VUE3与Uniapp 五 (v-if、v-show和template、v-for的使用)

VUE3与Uniapp 五 (v-if、v-show和template、v-for的使用)
<template>
	<!-- v-if如果是false,则不会出现在DOM中,不会被渲染;
	v-show如果为false,则会出现在DOM中,并加载资源(如图片),只是CSS隐藏了。 -->
	<view v-if="day===1">星期1</view>
	<view v-else-if="day===2">星期2</view>
	<view v-else-if="day===3">星期3</view>
	<view v-else-if="day===4">星期4</view>
	<view v-else-if="day===5">星期5</view>
	<view v-else-if="day===6">星期6</view>
	<view v-else-if="day===7">星期7</view>
	<view v-else>日期正确</view>
	
	<!-- template配合v-if使用,template并不会被加载到DOM中
	如果template换成view,则<view>123</view>被view包裹,级别降低。
	但,使用template,<view>123</view>不会被包裹,template没被加载到DOM中 -->
	<template v-if="true">
		<view>123</view>
	</template>
	
	<template v-else>
		<view>456</view>
	</template>

	<!-- v-for和v-if不能在同一个标签中
	<view v-for="item in phones " v-if="true">
		<text>{{item}}</text>
	</view> -->
	
	<!-- 同时使用v-for和v-if时,把其分别写在不同标签内 -->
	<!-- 在v-for中,养成写key的好习惯,否则增删改列表时会出错,小程序中也会出现报错 -->
	<template v-for="(item, index) in phones" :key="item.id">
		<view v-if="true">
			<text>{{item.name}}</text>
		<view>
	</template>
</template>

<script setup>
	import {ref} from "vue";
	
	let day = ref(1);

	let phones = ref([
		{id:11, name:"小米"}
		{id:11, name:"华为"}
		{id:11, name:"苹果"}
		{id:11, name:"荣耀"}
	]);
</script>

<style lang="scss">

</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/548544
推荐阅读
相关标签
  

闽ICP备14008679号