mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-21 07:50:33 +03:00
test: add e2e tests
fix: boolean attributes client side
This commit is contained in:
committed by
Alexander Lichter
parent
a853ce3de7
commit
05b8891110
+2
-1
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"presets": ["@babel/preset-env"]
|
||||
"presets": ["@babel/preset-env"],
|
||||
"plugins": ["@babel/plugin-syntax-dynamic-import"],
|
||||
}
|
||||
|
||||
@@ -21,6 +21,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",
|
||||
"cross-env": "^5.2.0",
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user