2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-10 06:22:26 +03:00
Files
vue-meta/examples/vue-router/index.html
T
2020-04-25 12:58:45 +02:00

20 lines
367 B
HTML

<!DOCTYPE html>
<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>