Vue 3 Base
Vue 3 basic app
by Fernando Testa
HTML
<script src="https://unpkg.com/vue@3"></script>
<html>
<body>
<div id="app">
{{ message }}
</div>
</body>
</html>
CSS
body {
background: #20262E;
padding: 5px;
font-family: Helvetica;
}
#app {
background: #fff;
border-radius: 4px;
padding: 10px;
transition: all 0.2s;
font-size: 13px;
}
li {
margin: 8px 0;
}
h2 {
font-weight: bold;
margin-bottom: 15px;
}
del {
color: rgba(0, 0, 0, 0.3);
}
p {
margin-bottom: 0.6em;
}
Vue
const { createApp } = Vue
createApp({
data() {
return {
message: 'Hello Vue 3!'
}
}
}).mount('#app')