import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
Vue.config.productionTip = false
declare module 'vue/types/vue' {
interface Vue {
$Kota: () => void
}
}
const Plugin = {
install(Vue: any, options?: any) {
Vue.prototype.$Kota = function () {
console.log('Мяу')
}
}
}
Vue.use(Plugin)
new Vue({
router,
store,
render: h => h(App),
}).$mount('#app')