From 0e3a58c519969ca9835a6da52816515eafc95fef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Thu, 21 Jan 2021 16:14:05 +0100 Subject: [PATCH] fix lint. --- src/index.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/index.ts b/src/index.ts index d3f5a92c..0617b21f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -import Vue from 'vue'; +import Vue from 'vue' import Neko from './component/main.vue' /** @@ -9,14 +9,14 @@ import Neko from './component/main.vue' */ const NekoElements = { install(vue: typeof Vue): void { - vue.component('Neko', Neko); + vue.component('Neko', Neko) }, -}; +} if (typeof window !== 'undefined' && window.Vue) { // @ts-ignore - window.Vue.use(NekoElements, {}); + window.Vue.use(NekoElements, {}) } -export { Neko }; -export default NekoElements; +export { Neko } +export default NekoElements