Quasar Select Api based on QSelect using Axios API to fetch remote data and fill options.
1
2
3
quasar ext add select-api //install
quasar ext remove select-api //uninstall
OR:
Create and register a boot file:
npm i quasar-app-extension-select-api
yarn add quasar-app-extension-select-api
1
2
3
4
import Vue from 'vue'
import Plugin from 'quasar-ui-select-api/src/index.js'
Vue.use(Plugin)
chevron_leftchevron_right