console
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="http://localhost:8085/lib/theme-chalk/index.css">
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
</head>
<style>
body {
margin: 0;
padding: 0;
}
.date-container {
height: 300px;
background-image: radial-gradient(
ellipse farthest-corner at center center,
#033958 0,
#080542 70%
);
display: flex;
align-items: center;
justify-content: center;
}
</style>
<body>
<div id="app" style="height: 100vh">
<div class="date-container">
<bv-date tick></bv-date>
</div>
</div>
</body>
<script src="https://unpkg.com/vue/dist/vue.js">
</script>
<script src="https://unpkg.com/element-ui/lib/index.js">
</script>
<script src="http://localhost:8085/lib/index.js">
</script>
<script>
new Vue({
el: '#app',
data: function() {
return {
}
}
})
</script>
</html>