写了demo测试。
你需要把标签写成对闭合才行
<Bc></Bc>
如有帮助请采纳回答 谢谢
用这种格式的写不香吗,干嘛用那么麻烦渲染的
<template> <button @click="count++">{{count}}</button> </template> <script> export default { data () { return { count: 0 } } } </script>