使用 Vue 绑定单个或多个 Class 名的实例代码
内容摘要
这篇文章主要为大家详细介绍了使用 Vue 绑定单个或多个 Class 名的实例代码,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
一、用 变量
对此感兴趣的朋友,看看idc笔记做的技术笔记!
一、用 变量
文章正文
这篇文章主要为大家详细介绍了使用 Vue 绑定单个或多个 Class 名的实例代码,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
一、用 变量形式 绑定单个 Class 名
在 vue 中绑定单个 class 名还好说,直接写就可以了
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <code> <template> <div id= "app" > <!-- 因为是自定义属性,所以要用到 v-bind ,简写为 : --> <!-- 3.将 box 绑定给 div --> <div : class = "box" ></div> </div> </template> <script> export default { name: 'app' , data () { return { // 2.在 data 中把 yellow 赋给 box box: 'yellow' } } } </script> <style> /* 1.在样式表中写好样式 */ .yellow{ width: 200px; height: 200px; background: #ff0; } </style></code> |
【512pic.com温馨提示:图片暂缺】
用 Vue 绑定单个Class 名
二、用 数组形式 绑定多个 Class 名
比如我们想再给这个 div 加个阴影
在 style 中写好样式
代码如下:
1 2 3 4 | <code> .shadow{ box-shadow: 10px 10px 5px 0 #999; }</code> |
在 data 中继续添加数据对象
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 | <code> <script> export default { name: 'app' , data () { return { box: 'yellow' , shadow: 'shadow' } } } </script></code> |
在标签中以数组的形式绑定 Class 名
代码如下:
1 2 3 4 5 6 | <code> <template> <div id= "app" > <div : class = "[box,shadow]" ></div> </div> </template></code> |
就 OK 了。
【512pic.com温馨提示:图片暂缺】
用 数组形式 绑定多个 Class 名
三、用 json 形式 绑定多个 Class 名
该方法方便用于当同时添加多个 Class 名时,在某种情况下判断显示哪种样式
先写好样式
代码如下:
1 2 3 4 5 6 7 8 9 10 11 | <code> <style> .yellow{ width: 200px; height: 200px; background: #ff0; } .shadow{ box-shadow: 10px 10px 5px 0 #999; } </style></code> |
在 data 中添加数字对象,用来做判断
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 | <code> <script> export default { name: 'app' , data () { return { show1:true, show2:false } } } </script></code> |
以 json 的形式绑定到 class 中,通过布尔值改变 show1 与 show2 的值,来控制 div 的状态
代码如下:
1 2 3 4 5 6 | <code> <template> <div id= "app" > <div : class = "{yellow:show1,shadow:show2}" ></div> </div> </template></code> |
【512pic.com温馨提示:图片暂缺】
用 json 形式 绑定多个 Class
ps:vue解决跨域问题
改config/index.js文件
代码如下:
1 2 3 4 5 6 7 8 9 | <code> proxyTable: { // 请求到 '/device' 下 的请求都会被代理到 target: http://debug.xxx.com 中 '/v1/*' : { target: 'https://api.tiaotiao5.com' , secure: true, // 接受 运行在 https 上的服务 changeOrigin: true } }</code> |
总结
以上所述是小编给大家介绍的使用 Vue 绑定单个或多个 Class 名的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对php教程网站的支持!
注:关于使用 Vue 绑定单个或多个 Class 名的实例代码的内容就先介绍到这里,更多相关文章的可以留意
代码注释