suchen
HeimWeb-FrontendView.jsSo verwenden Sie Vorlagensyntax und Vue-Anweisungen in Vue3

1 Vorlagen-Interpolationssyntax

  • Das Deklarieren einer Variablen im Skript kann mithilfe von {{Variablenname}} direkt in der Vorlage verwendet werden.

  • Mit der Vorlagensyntax können Sie bedingte Operationen schreiben. Auch Operationen werden unterstützt

    Die Operations-API wird ebenfalls unterstützt
  • <template>
      {{ message }}
        {{ message2==0 ? &#39;我是老大&#39; : &#39;我笑的&#39; }}
        {{ message2 + 1 }}
        {{ message.split(&#39;&#39;).map(v => `4546$v`) }}
    </template>
    
    <script setup lang="ts">
    const message = "我是唐少"
    const message2:number = 1
    </script>
    <style>
    </style>

    2 Befehle
  • v- alle Vue-Befehle am Anfang

V-Text wird zum Anzeigen von Text verwendet
  • V-HTML wird zum Anzeigen von Rich verwendet Text
  • v-if wird verwendet, um das Anzeigen und Ausblenden von Elementen zu steuern (wahres und falsches DOM umschalten)
  • v-else-if stellt den „else if-Block“ von v-if dar. Kann in einer Kette aufgerufen werden
  • v-else v-if bedingte Schlussanweisung
  • v-show wird verwendet, um das Anzeigen und Ausblenden von Elementen zu steuern (keine Anzeige blockiert CSS-Umschaltung)
  • v-on Die Abkürzung @ wird verwendet, um ein Elementadditionsereignis anzugeben.
  • V-Bind-Abkürzung: Wird zum Binden des Attributs Attr des Elements verwendet Element
  • V-On-Modifikator
  • Bubbling-Fall:

    <template>
      <div @click="parent">parent
        <div @click.stop="child">child</div>
      </div>
    </template>
      
    <script setup lang="ts">
    const child = () => {
      console.log(&#39;child&#39;);
     // 点击后不会答应parent,因为被阻止了
    }
    const parent = () => {
      console.log(&#39;parent&#39;);
    }
      
    </script>

    prevent Formular-Einreichungsfall:
  • <template>
      <form action="/">
        <button @click.prevent="submit" type="submit">submit</button>
      </form>
    </template>
    <script setup lang="ts">
    const submit = () => {
      console.log(&#39;child&#39;);
      
    }
    </script>
    <style>
    </style>
  • v-Bind-Bindungsklasse Fall 1:

    <template>
      <div :class="[flag ? &#39;active&#39; : &#39;other&#39;, &#39;h&#39;]">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-Bindungsklasse Fall 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 Bindungsstil:

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

    V-Modell-Fall:
  • <template>
      <input v-model="message" type="text" />
      <div>{{ message }}</div>
    </template>
    <script setup lang="ts">
    import { ref } from &#39;vue&#39; // 实时监听
    const message = ref("message")
    </script>
      
    <style>
    .active {
      color: red;
    }
    .other {
      color: blue;
    }
    .h {
      height: 300px;
      border: 1px solid #ccc;
    }
    </style>

Das obige ist der detaillierte Inhalt vonSo verwenden Sie Vorlagensyntax und Vue-Anweisungen in Vue3. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme
Dieser Artikel ist reproduziert unter:亿速云. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heiße Werkzeuge

EditPlus chinesische Crack-Version

EditPlus chinesische Crack-Version

Geringe Größe, Syntaxhervorhebung, unterstützt keine Code-Eingabeaufforderungsfunktion

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Leistungsstarke integrierte PHP-Entwicklungsumgebung

VSCode Windows 64-Bit-Download

VSCode Windows 64-Bit-Download

Ein kostenloser und leistungsstarker IDE-Editor von Microsoft

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

Dreamweaver Mac

Dreamweaver Mac

Visuelle Webentwicklungstools