vue 问题总结
Posted running00
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 问题总结相关的知识,希望对你有一定的参考价值。
- 1、 动态设置图片,
<img :src="url">
data() {
return {
url: require(相对路径) // 直接写相对路径会出错
}
}
- 2、props 传递
子组件中
<div>{{dataName}}</div>
//==
props: ['name'],
name: 'child',
data() {
return {dataName: this.name}
}
父组件
<child name="test" />
// -
import child from '';
component: [
child
]
以上是关于vue 问题总结的主要内容,如果未能解决你的问题,请参考以下文章