为了账号安全,请及时绑定邮箱和手机立即绑定

Vue.component

Vue.component

Ximoo 2018-10-11 08:46:35
<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>Title</title> </head> <body> <div id="app">     <counter></counter>     <counter></counter> </div>     <template id="counter-template">           <a>点我</a>         <button @click="count+=1">点我{{count}}</button>     </template> <script src="Vue.min.js"></script> <script>  Vue.component('counter',{         template:'#counter-template',  data:function(){             return{count:0};  }     });  new Vue({         el:'#app'  }) </script> </body> </html>为什么效果出现后Vue.component只能获得ID里的第一段代码?就是只能显示出来两个a标签里的内容,要是把下面的button放到前面,就只显示button而不显示a标签里的内容了
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 1008 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信