baseui/index.html
Sebastian Frank 2220bce227
title meta
2017-08-29 16:34:24 +02:00

21 lines
505 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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></app>
</div>
<script src="build/app.js"></script>
</body>
</html>