Vue.2.0.5实现Class 与 Style 绑定的实例

网友投稿 227 2023-05-06


Vue.2.0.5实现Class 与 Style 绑定的实例

Class 与 Style 绑定

数据绑定一个常见需求是操作元素的 class 列表和它的内联样式。因为它们都是属性 ,我们可以用v-bind 处理它们:只需要计算出表达式最终的字符串。不过,字符串拼接麻烦又易错。因此,在 v-bind 用于 class 和 style 时, vue.js 专门增强了它。表达式的结果类型除了字符串之外,还可以是对象或数组。

绑定 HTML Class

对象语法

我们可以传给 v-bind:class 一个对象,以动态地切换 class 。

上面的语法表示 classactive 的更新将取决于数据属性 isActive 是否为真值 。

我们也可以在对象中传入更多属性用来动态切换多个 class 。此外, v-bind:class 指令可以与普通的 class 属性共存。如下模板:

v-bind:clhttp://ass="{ active: isActive, 'text-danger': hasError }">

如下 data:

data: {

isActive: true,

hasError: false

}

渲染为:

当 isActive 或者 hasError 变化时,class 列表将相应地更新。例如,如果 hasError的值为 true , class列表将变为 "static active text-danger"。

你也可以直接绑定数据里的一个对象:

data: {

classObject: {

active: true,

'text-danger': false

}

}

渲染的结果和上面一样。我们也可以MItoT在这里绑定返回对象的计算属性。这是一个常用且强大的模式:

data: {

isActive: true,

error: null

},

computed: {

classObject: function () {

return {

active: this.isActive && !this.error,

'text-danger': this.error && this.error.type === 'fatal',

}

}

}

数组语法

我们可以把一个数组传给 v-bind:class ,以应用一个 class 列表:

data: {

activeClass: 'active',

errorClass: 'text-danger'

}

渲染为:

如果你也想根据条件切换列表中的 class ,可以用三元表达式:

此例始终添加 errorClass ,但是只有在 isActive 是 true 时添加 activeClass 。

不过,当有多个条件 class 时这样写有些繁琐。可以在数组语法中使用对象语法:

With Components

This section assumes knowledge ofVue Components. Feel free to skip it and come back later.

When you use the class attribute on a custom component, those classes will be added to the component's root element. Existing classes on this element will not be overwritten.

For example, if you declare this component:

Vue.component('my-component', {

template: '

Hi

})

Then add some classes when using it:

The rendered HTML will be:

Hi

The same is true for class bindings:

When isActive is truthy, the rendered HTML will be:

绑定内联样式

对象语法

v-bind:style 的对象语法十分直观——看着非常像 css ,其实它是一个 javascript 对象。 CSS 属性名可以用驼峰式(camelCase)或短横分隔命名(kebab-case):

data: {

activeColor: 'red',

fontSize: 30

}

直接绑定到一个样式对象通常更好,让模板更清晰:

data: {

styleObject: {

color: 'red',

fontSize: '13px'

}

}

同样的,对象语法常常结合返回对象的计算属性使用。

数组语法

v-bind:style 的数组语法可以将多个样式对象应用到一个元素上:

http://

自动添加前缀

当 v-bind:style 使用需要特定前缀的 CSS 属性时,如 transform ,Vue.js 会自动侦测并添加相应的前缀。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:java实现接口的关键字(java实现接口的关键字有哪些)
下一篇:详解Kotlin中的面向对象(二)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~