zoukankan      html  css  js  c++  java
  • vue中style的用法

    最近学习了vue中class和class的用法,想来总结一下,也把我的知识提供给大家使用;首先来总结class的用法,vue中的class有4种写法;class和style都属于DOM属性,所以在vue中都用:class和:style表示

    同样给id为box的div加上字体和颜色和背景颜色

    方法一

    <div id="box">

       <strong :style="{color:'red',background:'blue'}">落入凡尘伤情着我</strong>  

    </div>

    <script>

      new  Vue({

        el:"#box",

      });

    </script>

    方法二

    <div id="box">

       <strong :style="c">落入凡尘伤情着我</strong>  

    </div>

    <script>

      new  Vue({

        el:"#box",

        data:{

            c:{

              color:'red',background:'blue'

            }

        }

      });

    </script>

     

  • 相关阅读:
    jedis 连接 虚拟机内redis服务
    数据库存储过程项目总结
    前端jsp联系项目相关经验
    学习做项目的一些随笔
    循环
    字典
    集合
    元组
    列表
    字符串
  • 原文地址:https://www.cnblogs.com/yuershuo/p/6862247.html
Copyright © 2011-2022 走看看