Skip to content

Commit

Permalink
fix: component export default was not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Lydanne committed Oct 30, 2020
1 parent 7bdb9ef commit 852fbe0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/versions.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"1.4.13":"1.4","2.0.11":"2.0","2.1.0":"2.1","2.2.2":"2.2","2.3.9":"2.3","2.4.11":"2.4","2.5.4":"2.5","2.6.3":"2.6","2.7.2":"2.7","2.8.2":"2.8","2.9.2":"2.9","2.10.1":"2.10","2.11.1":"2.11","2.12.0":"2.12","0.0.13":"2.13"}
{"1.4.13":"1.4","2.0.11":"2.0","2.1.0":"2.1","2.2.2":"2.2","2.3.9":"2.3","2.4.11":"2.4","2.5.4":"2.5","2.6.3":"2.6","2.7.2":"2.7","2.8.2":"2.8","2.9.2":"2.9","2.10.1":"2.10","2.11.1":"2.11","2.12.0":"2.12","0.0.18":"2.13"}
3 changes: 3 additions & 0 deletions packages/message-box/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import MessageBox from './src/MessageBox.js'
import MessageBoxComponent from './src/MessageBox.vue'

export function useMsgbox() {
return MessageBox
Expand All @@ -13,3 +14,5 @@ export function useConfirm() {
export function usePrompt() {
return MessageBox.prompt
}

export default MessageBoxComponent
3 changes: 3 additions & 0 deletions packages/notification/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import Notification from './Notification.js'
import NotificationComponent from './Notification.vue'

export function useNotify() {
return Notification
}

export default NotificationComponent

0 comments on commit 852fbe0

Please sign in to comment.