You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ yarn add vuejs-dialog
64
64
// import into project
65
65
importVuefrom'vue';
66
66
importVuejsDialogfrom'vuejs-dialog';
67
-
importVuejsDialogMixinfrom'vuejs-dialog/vuejs-dialog-mixin.min.js'; // only needed in custom components
67
+
importVuejsDialogMixinfrom'vuejs-dialog/dist/vuejs-dialog-mixin.min.js'; // only needed in custom components
68
68
69
69
// include the default style
70
70
import'vuejs-dialog/dist/vuejs-dialog.min.css';
@@ -358,7 +358,7 @@ let options = {
358
358
verification:'continue', // for hard confirm, user will be prompted to type this to enable the proceed button
359
359
verificationHelp:'Type "[+:verification]" below to confirm', // Verification help text. [+:verification] will be matched with 'options.verification' (i.e 'Type "continue" below to confirm')
360
360
clicksCount:3, // for soft confirm, user will be asked to click on "proceed" btn 3 times before actually proceeding
361
-
backdropClose:false// set to true to close the dialog when clicking outside of the dialog window, i.e. click landing on the mask
361
+
backdropClose:false,// set to true to close the dialog when clicking outside of the dialog window, i.e. click landing on the mask
362
362
customClass:''// Custom class to be injected into the parent node for the current dialog instance
0 commit comments