我使用vue.js 2.x,並使用webpack設置一個簡單的應用程序。奇怪的錯誤,當運行一個簡單的vue.js應用程序
當我開始在開發模式下的應用程序,我得到的鉻控制檯這個錯誤,並沒有什麼在頁面上顯示:
Uncaught TypeError: _vm._m is not a function(…)
存在服務器(沒有的WebPack錯誤)上沒有錯誤。
Routes.js
import Home from './components/Home.vue';
import Portfolio from './components/portfolio/Portfolio.vue';
import Stocks from './components/stocks/Stocks.vue';
export const routes = [{
path: '/',
components: Home
}, {
path: '/portfolio',
components: Portfolio
}, {
path: '/stocks',
components: Stocks
}]
main.js
import Vue from 'vue'
import VueRouter from 'vue-router'
import App from './App.vue'
import { routes } from './routes'
Vue.use(VueRouter);
const router = new VueRouter({
mode: 'history',
routes
});
new Vue({
el: '#app',
router,
render: h => h(App)
})
App.vue
<template>
<div class="container">
<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>
ħ ome.vue
<template>
<h1>The home component</h1>
</template>
任何想法是什麼原因造成的?
請問您可以在這裏發佈'webpack.config.js'文件嗎?你我這麼好。 –