baseui/index.html

21 lines
505 B
HTML
Raw Normal View History

2017-08-24 11:16:07 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
2017-08-29 15:51:50 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2017-08-24 11:16:07 +02:00
<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">
2017-08-29 15:51:50 +02:00
<app></app>
2017-08-24 11:16:07 +02:00
</div>
<script src="build/app.js"></script>
</body>
</html>