首页 > 其他 > 详细

使用x-template 定义模板

时间:2017-05-24 11:58:58      阅读:217      评论:0      收藏:0      [点我收藏+]

demo

<script type="text/x-template" id="myFirstScriptComponent">
<p>this is my first scriptComponent</p>
</script>

使用x-template定义模板,设置id

在vue的实例中使用

new Vue({

  el:"#app",

  components:{    

    ‘script-component-demo‘:{
      template:‘#myFirstScriptComponent‘
    }

  }

}

});

html

<div id="app">
    <script-component-demo></script-component-demo>
</div>

 

使用x-template 定义模板

原文:http://www.cnblogs.com/xiaofenguo/p/6897828.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!