2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-20 19:10:33 +03:00

Merge branch 'next' into docs

This commit is contained in:
pimlie
2019-03-12 11:26:29 +01:00
70 changed files with 3062 additions and 1381 deletions
+1
View File
@@ -22,6 +22,7 @@
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-node": "^2.2.0",
+3 -2
View File
@@ -1,12 +1,13 @@
import Vue from 'vue'
import Router from 'vue-router'
import Meta from 'vue-meta'
import Home from './views/Home.vue'
import Post from './views/Post.vue'
Vue.use(Router)
Vue.use(Meta)
const Home = () => import('./views/Home.vue')
const Post = () => import('./views/Post.vue')
export default new Router({
mode: 'history',
base: '/vuex',