index.ts 213 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 import type { App } from 'vue'; import codeEditor from './src/CodeEditor.vue'; export const CodeEditor = Object.assign(codeEditor, { install(app: App) { app.component(codeEditor.name, codeEditor); }, });