mirror of
https://github.com/bra1n/townsquare.git
synced 2025-07-15 15:45:13 +00:00
10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
import Vue from 'vue'
|
|
import App from './App'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
el: '#townsquare',
|
|
template: '<App/>',
|
|
components: { App }
|
|
})
|