baseui/index.html
Sebastian Frank 931c142e16
reorderd code
2017-08-24 13:23:03 +02:00

21 lines
490 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">
<app :navigation-items="navItems"></app>
</div>
<script src="build/app.js"></script>
</body>
</html>