Last active
May 15, 2019 10:25
-
-
Save pxwee5/9d5b91a2dbee4a1f7b0527b39350b703 to your computer and use it in GitHub Desktop.
Static Vue SFC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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