24 lines
613 B
HTML
24 lines
613 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Vue Example</title>
|
|
<style>
|
|
.component-fade-enter-active, .component-fade-leave-active {
|
|
transition: opacity .3s ease;
|
|
}
|
|
.component-fade-enter, .component-fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="vue-app">
|
|
<navigation src="conf/navigation.json"></navigation>
|
|
<transition name="component-fade" mode="out-in">
|
|
<router-view></router-view>
|
|
</transition>
|
|
</div>
|
|
<script src="build/app.js"></script>
|
|
</body>
|
|
</html> |