SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>

<head>
	<meta charset="UTF-8">
	<!-- import CSS -->
	<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;
	}

	.timer-container {
		height: 150px;
		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="timer-container">
			<bv-timer target="00:01:00" type="danger" :countdown="false" auto></bv-timer>
		</div>
	</div>
</body>
<!-- import Vue  -->
<script src="https://unpkg.com/vue/dist/vue.js">

</script>
<script src="https://unpkg.com/element-ui/lib/index.js">

</script>
<!-- import JavaScript -->
<script src="http://localhost:8085/lib/index.js">

</script>
<script>
	new Vue({
      el: '#app',
      data: function() {
        return {
        }
      }
    })

</script>

</html>