8 lines
195 B
JavaScript
Raw Normal View History

2023-02-06 11:40:03 +08:00
import MyPropertiesPanel from './PropertiesPanel.vue'
2023-01-28 09:53:43 +08:00
2023-02-06 11:40:03 +08:00
MyPropertiesPanel.install = function (Vue) {
Vue.component(MyPropertiesPanel.name, MyPropertiesPanel)
}
2023-01-28 09:53:43 +08:00
2023-02-06 11:40:03 +08:00
export default MyPropertiesPanel