Dvan
无需配置构建你的 Vue 应用.
src
App.vue
index.js
package.json
<template>
<h1>
{{ hello }}
</h1>
</tempalte>
<script>
export default {
data() {
return {
hello: 'Hi there! 😋'
}
}
}
</script>