2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-10 17:52:25 +03:00
Files
vue-meta/examples/vue-router/index.html
T

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