[Vuejs]-Vue with parcel does not render correctly

0👍

To use in-DOM templates (i.e., the <div id="app>{{ message }}</div>), import the full build of Vue that includes the runtime template compiler:

// import Vue from 'vue'
import Vue from 'vue/dist/vue.esm.browser' // full build

Leave a comment