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

vue component为什么不显示?

vue component为什么不显示?

HUWWW 2018-12-12 14:10:07
<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta http-equiv="X-UA-Compatible" content="ie=edge">    <title>Document</title></head><body>    <ol>        <!-- 创建一个 todo-item 组件的实例 -->        <todo-item></todo-item>    </ol>    <script src="https://unpkg.com/vue"></script>    <script>        Vue.component('todo-item', {            template: '<li>这是个待办项</li>'        })    </script></body></html>初学vue,为什么我这边显示的是一个空白页面,组件模板的写法是错的么?
查看完整描述

1 回答

?
jeck猫

TA贡献1909条经验 获得超7个赞

html里面是这样的


<div id='app'>

<v-header></v-header>

</div>

js 是这样的


    Vue.component('vHeader', {

          template: '<div>A custom component!</div>'

        })


    new Vue({

        el:'#app',

    })


查看完整回答
反对 回复 2019-01-16
  • 1 回答
  • 0 关注
  • 466 浏览
慕课专栏
更多

添加回答

举报

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