We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 446688f commit ef90fa3Copy full SHA for ef90fa3
src/plugins/action-sheet.js
@@ -7,6 +7,6 @@ export default {
7
if (this.__installed) { return }
8
this.__installed = true
9
10
- $q.actionSheet = modalFn(QActionSheet, Vue)
+ this.create = $q.actionSheet = modalFn(QActionSheet, Vue)
11
}
12
src/plugins/dialog.js
@@ -8,7 +8,7 @@ export default {
- $q.dialog = isSSR
+ this.create = $q.dialog = isSSR
? () => new Promise()
13
: modalFn(QDialog, Vue)
14
0 commit comments