码迷,mamicode.com
首页 > 其他好文 > 详细

2. 封装vdiv组件,常用样式参数化传递

时间:2018-07-04 13:45:00      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:ret   font   布局   ted   method   封装   fun   list   only   

优点: 基本满足盒子模型需求,基本页面快速布局。

 

<template>
  <div :style="ssp">
    textasasdasdas
    {{ss}}
  </div>
</template>

<script>
export default {
  name: HelloWorld,
  props:[ss],
  data () {
    return {
      msg: Welcome to Your Vue.js App,
      firstName:ou,
      lastName:wen
    }
  },
  methods:{

  },
  computed:{
    ssp: function(){
        return `padding-left:200px;`
    }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1, h2 {
  font-weight: normal;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  display: inline-block;
  margin: 0 10px;
}
a {
  color: #42b983;
}
</style>

 

2. 封装vdiv组件,常用样式参数化传递

标签:ret   font   布局   ted   method   封装   fun   list   only   

原文地址:https://www.cnblogs.com/qianzi/p/9262663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!