Vue.jsをコマンドラインを使わずにお手軽に使う場合CDNからビルド済みのものを参照する形が楽。
ついでにBootstrapも参照するとよい感じする。
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://unpkg.com/vue@2.6.14"></script>
<title>simple vue</title>
</head>
<body>
<div id="app" class="container-fluid">
<div class="row">
<span class="col-12 fs-3 text-center border">現在の時刻: {{ currentTime }}</span>
</div>
</div>
<script>
const MainApp = new Vue( {
el: '#app',
data: {
currentTime:'',
intervalHandler:null
},
mounted(){
this.intervalHandler = setInterval(()=>{
const dt = new Date();
this.currentTime = `${(dt.getHours()+'').padStart(2,'0')}:${(dt.getMinutes()+'').padStart(2,'0')}:${(dt.getSeconds()+'').padStart(2,'0')}` ;
}, 1000);
},
});
</script>
</body>
</html>
コードがちょっと見づらいのでgistにも