You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// app.js
|
|
// import Vue from './node_modules/vue/dist/vue.esm.browser.js'
|
|
|
|
const app = new Vue({
|
|
el: '#app',
|
|
data() {
|
|
return {
|
|
message: 'Hello Webpack integration with vuejs'
|
|
}
|
|
}
|
|
})
|