vue-router控制台报错You are using the runtime-only build of Vue where the template compiler...

使用vue-router报错

You are using the runtime-only build of Vue where the template compiler is not available.
vue-router控制台报错You are using the runtime-only build of Vue where the template compiler..._第1张图片
今天第一次用vue-router,按照官网的例子抄了一遍

首先在main.js中引入vue-router配置


import Vue from 'vue'
import App from './App.vue'
import VueRouter from 'vue-router'

Vue.use(VueRouter)

Vue.config.productionTip = false

const Foo = { template: '
foo
'
} const Bar = { template: '
bar
'
} const routes = [ { path: '/foo', component: Foo }, { path: '/bar', component: Bar } ] const router = new VueRouter({ routes }) new Vue({ store, router, render: h => h(App), }).$mount('#app')

然后在App.vue中写入导航以及路由出口

<template>
  <div id="app">
    <p>
      
      
      
      <router-link to="/foo">Go to Foorouter-link>
      <router-link to="/bar">Go to Barrouter-link>
    p>
    
    
    <router-view>router-view>
  div>
template>

结果写出来没用,后来查了下原因,使用vue-cli创建的项目需要在根目录下创建vue.config.js

写入内容

module.exports = {
  runtimeCompiler: true
}

重启项目,就OK了

解决方案出处: https://github.com/vuejs/vue-cli/issues/2754#issuecomment-493290698

你可能感兴趣的:(vue)