2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-03 08:14:05 +03:00

chore: update example deps

This commit is contained in:
pimlie
2020-04-25 12:58:45 +02:00
parent f0eeacaa02
commit fb89fc5f67
4 changed files with 49 additions and 34 deletions
+10 -4
View File
@@ -1,5 +1,11 @@
<!DOCTYPE html>
<link rel="stylesheet" href="/global.css">
<a href="/">&larr; Examples index</a>
<div id="app"></div>
<script src="/__build__/basic-render.js"></script>
<html>
<head>
<link rel="stylesheet" href="/global.css">
</head>
<body>
<a href="/">&larr; Examples index</a>
<div id="app"></div>
<script src="/__build__/basic-render.js"></script>
</body>
</html>
+18 -18
View File
@@ -20,28 +20,28 @@
},
"homepage": "https://github.com/nuxt/vue-meta#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.3.0",
"consola": "^2.10.1",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"consola": "^2.11.3",
"core-js": "3",
"cross-env": "^5.2.1",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"express-urlrewrite": "^1.2.0",
"fs-extra": "^8.1.0",
"fs-extra": "^9.0.0",
"lodash": "^4.17.15",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-meta": "^2.2.2",
"vue-router": "^3.1.3",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1",
"webpack": "^4.39.3",
"webpack-dev-server": "^3.8.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.1",
"vue-meta": "^2.3.3",
"vue-router": "^3.1.6",
"vue-server-renderer": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.3.0",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.10.3",
"webpackbar": "^4.0.0"
}
}
+3
View File
@@ -15,6 +15,9 @@ export default function createApp () {
<p>Hello World</p>
</div>`,
metaInfo: {
htmlAttrs: {
lang: 'en'
},
title: 'Hello World',
meta: [
{
+18 -12
View File
@@ -1,13 +1,19 @@
<!DOCTYPE html>
<link rel="stylesheet" href="/global.css">
<a href="/">&larr; Examples index</a>
<div id="app"></div>
<script src="/__build__/vue-router.js"></script>
<style>
.page-enter-active, .page-leave-active {
transition: opacity .5s
}
.page-enter, .page-leave-to {
opacity: 0
}
</style>
<html>
<head>
<link rel="stylesheet" href="/global.css">
<style>
.page-enter-active, .page-leave-active {
transition: opacity .5s
}
.page-enter, .page-leave-to {
opacity: 0
}
</style>
</head>
<body>
<a href="/">&larr; Examples index</a>
<div id="app"></div>
<script src="/__build__/vue-router.js"></script>
</body>
</html>