1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-09-09 23:08:55 +08:00

chore: use Runtime-only

Detail see https://vuejs.org/v2/guide/installation.html#Runtime-Compiler-vs-Runtime-only
This commit is contained in:
Pan 2018-06-25 11:05:44 +08:00
parent ae2ca072f5
commit b07299a9b3
2 changed files with 1 additions and 2 deletions

View File

@ -34,7 +34,6 @@ module.exports = {
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
}
},

View File

@ -36,6 +36,6 @@ new Vue({
router,
store,
i18n,
template: '<App/>',
render: h => h(App),
components: { App }
})