标签: vue.js
我有以下内容:
<div :style="{'width': width}"></div>
使用以下道具脚本:
export default { props: { width: { type: String, default: '100px' } } }; </script>
我在这里到底在做什么呢?我必须使用compute来做到这一点吗?
compute