2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-08 17:32:26 +03:00
Files
vue-meta/examples/vue-router/index.html
T
pimlie 9cfde5b550 feat: make ssr work
feat: update build script

chore: use jiti instead of babel-node for examples
2021-01-25 00:50:46 +01:00

21 lines
425 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/_static/global.css">
<style>
.page-enter-active, .page-leave-active {
transition: opacity .5s
}
.page-enter, .page-leave-to {
opacity: 0
}
</style>
</head>
<body>
<body-prepend id="body-prepend"></body-prepend>
<a href="/">&larr; Examples index</a>
<div id="app"></div>
<script src="/__build__/vue-router.js"></script>
</body>
</html>