Skip to content

Instantly share code, notes, and snippets.

@pxwee5
Last active May 15, 2019 10:25
Show Gist options
  • Save pxwee5/9d5b91a2dbee4a1f7b0527b39350b703 to your computer and use it in GitHub Desktop.
Save pxwee5/9d5b91a2dbee4a1f7b0527b39350b703 to your computer and use it in GitHub Desktop.
Static Vue SFC
import Vue from '/web_modules/vue/dist/vue.esm.browser.js'
import httpVueLoader from '/web_modules/http-vue-loader/src/httpVueLoader.js'
const App = new Vue({
el: '#app',
components: {
'app-world': httpVueLoader('/js/components/AppWorld.vue')
},
})
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment