mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-08 17:32:26 +03:00
9cfde5b550
feat: update build script chore: use jiti instead of babel-node for examples
21 lines
425 B
HTML
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="/">← Examples index</a>
|
|
<div id="app"></div>
|
|
<script src="/__build__/vue-router.js"></script>
|
|
</body>
|
|
</html>
|