v-for动态组件vuejs 1.0

时间:2016-04-07 06:47:46

标签: javascript vue.js

是否可以使用v-for动态加载vue组件?

  data: {
    "components" : [
      {"type": "my-first"},
      {"type": "my-second"}
    ]
  }

<component v-for="com in components" is="com.type"></component>

Full example

我见过v-repeat的例子,但在Vue 1.0中已弃用。 link

1 个答案:

答案 0 :(得分:1)

它需要正确的数据绑定await

link