2018-12-06 18:26:49 +00:00
|
|
|
import Vue from 'vue';
|
|
|
|
import App from './App.vue';
|
|
|
|
import router from './router';
|
2018-12-07 11:02:58 +00:00
|
|
|
import InputText from './components/inputtext/InputText';
|
|
|
|
|
|
|
|
import './assets/styles/primevue.css';
|
2018-12-06 18:26:49 +00:00
|
|
|
import 'primeflex/primeflex.css';
|
2018-12-04 07:08:40 +00:00
|
|
|
|
2018-12-06 18:26:49 +00:00
|
|
|
Vue.config.productionTip = false;
|
2018-12-04 07:08:40 +00:00
|
|
|
|
2018-12-07 11:02:58 +00:00
|
|
|
Vue.component('p-inputtext', InputText);
|
|
|
|
|
2018-12-04 07:08:40 +00:00
|
|
|
new Vue({
|
|
|
|
router,
|
|
|
|
render: h => h(App)
|
2018-12-06 18:26:49 +00:00
|
|
|
}).$mount('#app');
|