2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-08 00:12:25 +03:00
Files
vue-meta/examples/vue-router/index.html
T
2020-06-01 01:05:59 +02:00

21 lines
406 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>
<a href="/">&larr; Examples index</a>
<div id="app"></div>
<div id="put-it-here"></div>
<script src="/__build__/vue-router.js"></script>
</body>
</html>