@kwange/vue-sql-editor
Version:
vue sql editor
19 lines (15 loc) • 490 B
JavaScript
import SQLEditor from './src/SQLEditor.vue'
const plugin = {
install(Vue) {
Vue.component('SQLEditor', SQLEditor)
Vue.component('SqlEditor', SQLEditor)
Vue.component('sql-editor', SQLEditor)
},
}
export default plugin
/**
* 允许 Vue 应用通过 Vue.use() 方法安装它。如果检测到在浏览器环境中,并且 window.Vue 存在,它会自动安装组件
*/
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(SQLEditor)
}