Dvan

无需配置构建你的 Vue 应用.

立马起步 →

src
App.vue
index.js
package.json
<template>
  <h1>
    {{ hello }}
  </h1>
</tempalte>
<script>
export default {
  data() {
    return {
      hello: 'Hi there! 😋'
    }
  }
}
</script>
localhost:4000