2020-03-27 16:39:47 +03:00
|
|
|
import Vue from 'vue'
|
2020-10-11 11:41:32 +03:00
|
|
|
import VueFormulario from '@/index.ts'
|
2020-03-29 04:56:11 +03:00
|
|
|
import FormulateSpecimens from './FormulateSpecimens.vue'
|
2020-03-27 16:39:47 +03:00
|
|
|
|
|
|
|
Vue.config.productionTip = false
|
2020-10-09 22:58:28 +03:00
|
|
|
Vue.use(VueFormulario)
|
2020-03-27 16:39:47 +03:00
|
|
|
|
|
|
|
new Vue({
|
2020-10-09 22:58:28 +03:00
|
|
|
render: h => h(FormulateSpecimens)
|
2020-03-27 16:39:47 +03:00
|
|
|
}).$mount('#app')
|