Initial commit

This commit is contained in:
Sebastian Frank
2017-08-24 11:16:07 +02:00
commit a3cf644fb4
14 changed files with 7858 additions and 0 deletions

24
index.html Normal file
View File

@@ -0,0 +1,24 @@
<!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>