我想在weex中使用vue路由器,但现在有一个问题: "名称没有组件配置:router-view,使用默认配置"。感谢。
router.js
/*global Vue*/
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'
Vue.use(Router)
module.exports = new Router({
routes: [
{
path: '/',
name: 'HelloWorld',
component: HelloWorld
}
]
})
HelloWorld.vue
<template>
<text class="message">Now, let's use Vue.js to build your Weex app.</text>
</template>
index.vue
<template>
<div class="wrapper">
<image :src="logo" class="logo" />
<text class="greeting">The environment is ready!</text>
<router-view/>
</div>
</template>