diff --git a/index.js b/index.js index cc33b6ca8..cf341c6c8 100644 --- a/index.js +++ b/index.js @@ -50,7 +50,7 @@ import Anchor from './packages/common/Anchor' import Dropdown from './packages/common/Dropdown' import Popselect from './packages/common/Popselect' import App from './packages/common/App' -import CancelMark from './packages/common/CancelMark' +import CancelMark from './packages/base/CancelMark' function install (Vue) { Card.install(Vue) diff --git a/packages/base/Picker/index.js b/packages/base/Picker/index.js new file mode 100644 index 000000000..5fffdaea1 --- /dev/null +++ b/packages/base/Picker/index.js @@ -0,0 +1,8 @@ +/* istanbul ignore file */ +import BasePicker from './src/main.vue' + +BasePicker.install = function (Vue) { + Vue.component(BasePicker.name, BasePicker) +} + +export default BasePicker diff --git a/packages/base/Picker/src/main.vue b/packages/base/Picker/src/main.vue new file mode 100644 index 000000000..ff746518e --- /dev/null +++ b/packages/base/Picker/src/main.vue @@ -0,0 +1,199 @@ + + + diff --git a/packages/common/Input/src/main.vue b/packages/common/Input/src/main.vue index 62710c02b..eaef834d6 100644 --- a/packages/common/Input/src/main.vue +++ b/packages/common/Input/src/main.vue @@ -64,7 +64,7 @@