今回は、VueJs で V-bind 命令を使用する方法を説明します。VueJs で V-bind 命令を使用する際の 注意事項 は何ですか? 以下は実際的なケースです。
はじめに
v-bind は主に属性バインディングに使用されます。Vue は公式に略語としてバインドを提供します。例:<!-- 完整语法 --> <a v-bind:href="url"></a> <!-- 缩写 --> <a :href="url"></a>
1. 概要
v-bind は主に属性に使用されます。 class 属性、style 属性、value 属性、href 属性などのバインディングは、属性である限り、v-bind 命令を使用してバインドできます。 存在するかどうかは、データ属性 isActive の真偽に依存しますオブジェクトにさらに多くの属性を渡して、複数のクラスを動的に切り替えることができます。さらに、v-bind:class ディレクティブは、通常のクラス属性と共存することもできます。次のテンプレートがある場合:<!-- 绑定一个属性 --> <img v-bind:src="imageSrc"> <!-- 缩写 --> <img :src="imageSrc"> <!-- 内联字符串拼接 --> <img :src="'/path/to/images/' + fileName"> <!-- class 绑定 --> <p :class="{ red: isRed }"></p> <p :class="[classA, classB]"></p> <p :class="[classA, { classB: isB, classC: isC }]"> <!-- style 绑定 --> <p :style="{ fontSize: size + 'px' }"></p> <p :style="[styleObjectA, styleObjectB]"></p> <!-- 绑定一个有属性的对象 --> <p v-bind="{ id: someProp, 'other-attr': otherProp }"></p> <!-- 通过 prop 修饰符绑定 DOM 属性 --> <p v-bind:text-content.prop="text"></p> <!-- prop 绑定。“prop”必须在 my-component 中声明。--> <my-component :prop="someThing"></my-component> <!-- 通过 $props 将父组件的 props 一起传给子组件 --> <child-component v-bind="$props"></child-component> <!-- XLink --> <svg><a :xlink:special="foo"></a></svg>
<p v-bind:class="{ active: isActive }"></p>
<p class="static" v-bind:class="{ active: isActive, 'text-danger': hasError }"> </p> 和如下 data data: { isActive: true, hasError: false }
<p class="static active"></p>
<p v-bind:class="classObject"></p> data: { classObject: { active: true, 'text-danger': false } }
<p v-bind:class="classObject"></p> data: { isActive: true, error: null }, computed: { classObject: function () { return { active: this.isActive && !this.error, 'text-danger': this.error && this.error.type === 'fatal' } } }
expression
<p v-bind:class="[activeClass, errorClass]"></p> data: { activeClass: 'active', errorClass: 'text-danger' }
<p class="active text-danger"></p>
自己定義コンポーネントで class 属性を使用する場合、これらのクラスは上記のコンポーネントのルート要素に追加されます。この要素にすでに存在するクラスは上書きされません。
このコンポーネントを宣言すると、次のようになります。
isActive が true の場合、HTML は<p v-bind:class="[isActive ? activeClass : '', errorClass]"></p>
4. インラインスタイルのバインド
オブジェクト構文v-bind:style のオブジェクト構文は非常に複雑です直感的 - CSS に非常によく似ていますが、実際には JavaScript
オブジェクトです。 CSS プロパティ名は、キャメルケースまたはケバブケースを使用して名前を付けることができます (一重引用符で囲むことを忘れないでください):<p v-bind:class="[{ active: isActive }, errorClass]"></p>
Vue.component('my-component', { template: '<p class="foo bar">Hi</p>' })
v-bind:style 的数组语法可以将多个样式对象应用到同一个元素上
<p v-bind:style="[baseStyles, overridingStyles]"></p>
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上がVueJs で V-bind ディレクティブを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。