1. ホーム
  2. Web プログラミング
  3. ジャバスクリプト
  4. javascriptのクラスライブラリ

Vueの一般的な組み込みディレクティブの説明

2022-01-13 14:50:27

<body>
    <div id="root">
        <h1 v-pre>Learn well</h1>
        <h1>{{name}}</h1>
        <h1 v-text="name"></h1>
        <h2 v-html="str"></h2>
        <h2 v-once>The value of n at initialization is:{{n}}</h2>
        <h2> The current value is:{{n}}</h2>
        <button @click="n++">click me n+1</button>
    </div>
    <script>
        Vue.config.productionTip = false;
        new Vue({
            el: "#root",
            data: {
                n: 1,
                name: "王同学",
                str: '<h4>Hello! </h4>'
            }
        });
    </script>
</body>



概要

この記事があなたのお役に立ち、Script Houseの他のコンテンツにもっと注目していただけることを願っています。