10 lines
329 B
JavaScript
10 lines
329 B
JavaScript
|
import Editor from './components/Editor.vue'
|
||
|
// export default {
|
||
|
// // The install method is all that needs to exist on the plugin object.
|
||
|
// // It takes the global Vue object as well as user-defined options.
|
||
|
// install(Vue, options) {
|
||
|
// Vue.component('editor', Editor)
|
||
|
// }
|
||
|
// };
|
||
|
|
||
|
export default Editor
|