mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-08 00:12:25 +03:00
21 lines
406 B
HTML
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="/">← Examples index</a>
|
|
<div id="app"></div>
|
|
<div id="put-it-here"></div>
|
|
<script src="/__build__/vue-router.js"></script>
|
|
</body>
|
|
</html>
|