你可以在 Vuejs 的模板字符串中动态定义属性吗?

use*_*257 0 javascript vue.js vuejs2

我可以传入一个模板字符串并动态传入一个属性,以便我可以使其具有反应性吗?在下面的示例中,我希望消息具有反应性,但我不想在数据选项上预定义它。

<div id="vue">
 <component :is="string && {template:string}"/>
</div>

new Vue({
    el:'#vue',
    data(){
    return {
    string:undefined,
   }
  },
  created(){
    //setTimeout to simulate ajax call
    setTimeout(()=> this.string = '<div><h1 v-for="n in 1">Hello!    </h1><input v-model="message" placeholder="edit me"><p>Message is: {{ message }}</p>    </div>', 1000)
  }
})
Run Code Online (Sandbox Code Playgroud)

https://jsfiddle.net/kxtsvtro/5/

Roy*_*y J 6

您可以data以与指定模板相同的方式指定 :只需将其插入到组件规范中。

new Vue({
  el: '#vue',
  data() {
    return {
      string: undefined,
      dataObj: undefined
    }
  },
  created() {
    //setTimeout to simulate ajax call
    setTimeout(() => {
      this.string = '<div><h1 v-for="n in 1">Hello!</h1><input v-model="message" placeholder="edit me"><p>Message is: {{ message }}</p></div>';
      this.dataObj = {
        message: 'initial'
      };
    }, 1000)
  }
})
Run Code Online (Sandbox Code Playgroud)
<script src="//unpkg.com/vue@latest/dist/vue.js"></script>
<div id="vue">
  <component :is="string && {template:string, data: function() { return dataObj}}" />
</div>
Run Code Online (Sandbox Code Playgroud)