[Vuejs]-Vue3 and Quasar – custom component problem

0👍

You should enable the dialog plugin in quasar.config.js see https://quasar.dev/quasar-plugins/dialog#installation

// quasar.config file

return {
  framework: {
    plugins: [
      'Dialog'
    ]
  }
}

Leave a comment