index.vue里面书写的文字正常展示,但是里面引入的一个vue组件不能展示,电脑浏览器正常,就在手机调试时不会展示。
index.vue
<template>
<div class="wrapper">
<header></header>
<span class="title">Hello {{target}}</span>
</div>
</template>header.vue
<template> <div class="header"> <text>haoming</text> </div> </template>
慕娘9325324