diff --git a/src/components/card/card.vue b/src/components/card/card.vue index e08a605..7dc72ec 100644 --- a/src/components/card/card.vue +++ b/src/components/card/card.vue @@ -10,6 +10,8 @@ const defaultPadding = 16; export default { + name: 'Card', + props: { bordered: { type: Boolean, diff --git a/src/components/message/index.js b/src/components/message/index.js index 06bde55..d7592bc 100644 --- a/src/components/message/index.js +++ b/src/components/message/index.js @@ -63,6 +63,8 @@ function notice (content = '', duration = defaultDuration, type, onClose = funct } export default { + name: 'Message', + info (options) { const type = typeof options; if (type === 'string') { -- libgit2 0.21.4