在样式属性中使用道具值

时间:2019-09-16 17:52:58

标签: vue.js

我有以下内容:

  <div :style="{'width': width}"></div>

使用以下道具脚本:

export default {
  props: {
    width: {
      type: String,
      default: '100px'
    }
  }
};
</script>

我在这里到底在做什么呢?我必须使用compute来做到这一点吗?

0 个答案:

没有答案