Vue学习之路

准备工作

安装vue

1
npm install -g @vue/cli

测试安装

1
vue --version

创建项目

1
vue create vue-demo

模板语法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
<h3>模板语法</h3>
<p>{{msg}}</p>
<p>{{hello}}</p>
<p>{{number+1}}</p>
<p v-html="rawHtml"></p>
</template>

<script>
export default {
data(){
return {
msg:"神奇的语法",
hello:"hello World",
number:10,
rawHtml:"<a href='https://baidu.com'>百度</a>"
}
}
}
</script>

通过 {{}} 来显示,里边可加单行的逻辑也可以加属性

属性绑定

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
<template>
<div v-bind:class="Class" v-bind:id="ID">{{Hello}}</div>
<button :disabled="IsButtonDisabled" :class="BtnClass">Button</button>
<div v-bind="objectAttr">DIV content</div>
</template>

<script>
export default{
data(){
return{
Class:"active",
Hello:"Hello World",
ID:"dynamicId",
IsButtonDisabled:"true",
BtnClass:"btnclass",
objectAttr:{
id:"appId",
class:"appClass"
}

}
}
}
</script>
<style>
.active{
color: antiquewhite;
font-size: large;
}
.btnclass{
color: white;
}
</style>

使用 v-bind: 进行属性渲染,也可以直接用 :

条件绑定

v-if

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
<h3>条件渲染</h3>
<div v-if="flag">see see me</div>
</template>

<script>
export default {
data(){
return{
flag:true
}
}
}
</script>

flag 为 true 时候显示,false时不显示

v-else

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
<h3>条件渲染</h3>
<div v-if="flag">see see me</div>
<div v-else>see see you</div>
</template>

<script>
export default {
data(){
return{
flag:false
}
}
}
</script>

v-if 不显示时, v-else 显示

v-else-if

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
<h3>条件渲染</h3>
<div v-if="flag">see see me</div>
<div v-else>see see you</div>
<div v-if="type==='A'">A</div>
<div v-else-if="type==='B'">B</div>
<div v-else-if="type==='C'">C</div>
<div v-else> Not ABC </div>
</template>

<script>
export default {
data(){
return{
flag:true,
type:'D'
}
}
}
</script>

v-show

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
<h3>条件渲染</h3>
<div v-if="flag">see see me</div>
<div v-else>see see you</div>
<div v-if="type==='A'">A</div>
<div v-else-if="type==='B'">B</div>
<div v-else-if="type==='C'">C</div>
<div v-else> Not ABC </div>
<div v-show="flag">Can can him</div>
</template>

<script>
export default {
data(){
return{
flag:true,
type:'D'
}
}
}
</script>

v-if 类似

v-show 不管flase还是true 都会渲染,而 v-if 只看条件,如果为真才渲染

列表渲染


Vue学习之路
http://jack-constantine.github.io/2023/11/05/Vue学习之路/
作者
JackConstantine
发布于
2023年11月5日
许可协议