首頁 > 軟體

Vue3中的模板語法和vue指令

2022-08-06 14:00:04

1 模板插值語法

  • 在script 宣告一個變數可以直接在template 使用用法為{{變數名稱}}
  • 模板語法是可以編寫條件運算的
  • 運算也是支援的
  • 操作API 也是支援的
<template>
  {{ message }}
    {{ message2==0 ? '我是老大' : '我笑的' }}
    {{ message2 + 1 }}
    {{ message.split('').map(v => `4546$v`) }}
</template>

<script setup lang="ts">
const message = "我是唐少"
const message2:number = 1
</script>
<style>
</style>

2 指令

  • v- 開頭都是vue 的指令
  • v-text 用來顯示文字
  • v-html 用來展示富文字
  • v-if 用來控制元素的顯示隱藏(切換真假DOM)
  • v-else-if 表示 v-if 的“else if 塊”。可以鏈式呼叫
  • v-else v-if條件收尾語句
  • v-show 用來控制元素的顯示隱藏(display none block Css切換)
  • v-on 簡寫@ 用來給元素新增事件
  • v-bind 簡寫: 用來繫結元素的屬性Attr
  • v-model 雙向繫結
  • v-for 用來遍歷元素

v-on修飾符

冒泡案例:

<template>
  <div @click="parent">parent
    <div @click.stop="child">child</div>
  </div>
</template>
  
<script setup lang="ts">
const child = () => {
  console.log('child');
 // 點選後不會答應parent,因為被阻止了
}
const parent = () => {
  console.log('parent');
}
  
</script>

阻止表單提交案例:

<template>
  <form action="/">
    <button @click.prevent="submit" type="submit">submit</button>
  </form>
</template>
<script setup lang="ts">
const submit = () => {
  console.log('child');
  
}
</script>
<style>
</style>

v-bind 繫結class 案例 1:

<template>
  <div :class="[flag ? 'active' : 'other', 'h']">456789</div>
</template>
<script setup lang="ts">
const flag: boolean = false;// 改成true後切換不同的效果
</script>
  
<style>
.active {
  color: red;
}
.other {
  color: blue;
}
.h {
  height: 300px;
  border: 1px solid #ccc;
}
</style>

v-bind 繫結class 案例 2:

<template>
  <div :class="flag">{{flag}}</div>
</template>
 // 直接繫結cls
<script setup lang="ts">
type Cls = {
  other: boolean,
  h: boolean
}
const flag: Cls = {
  other: false,
  h: true
};
</script>
<style>
.active {
  color: red;
}
.other {
  color: blue;
}
.h {
  height: 300px;
  border: 1px solid #ccc;
}
</style>

v-bind 繫結style案例:

<template>
  <div :style="style">繫結style</div>
</template>
<script setup lang="ts">
type Style = {
  height: string,
  color: string
}
const style: Style = {
  height: "300px",
  color: "blue"
}
</script>
<style>
</style>

v-model 案例:

<template>
  <input v-model="message" type="text" />
  <div>{{ message }}</div>
</template>
<script setup lang="ts">
import { ref } from 'vue' // 實時監聽
const message = ref("message")
</script>
  
<style>
.active {
  color: red;
}
.other {
  color: blue;
}
.h {
  height: 300px;
  border: 1px solid #ccc;
}
</style>

到此這篇關於Vue3中的模板語法和vue指令的文章就介紹到這了,更多相關vue3模板語法和vue指令內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com