@alexe2baranov Hi! Next Quasar (v0.13) to be released next week will have this @select event that you can hook into. It receives the whole object containing the selected item as param.
@AhsanAbrar Hi, like Scott indicated, the framework is pretty stable and usable as it is now. v1.0 will only mean a few features more and (probably) some very minor API changes that will be easy to upgrade to.
@fsgiudice if you write components for Quasar you already have a playground app working there (/dev folder, which is run on npm run dev and compiles Quasar on the fly). Add a page for each new component and test it out there. No need to compile and then use in another repo.
In router.js:
const router = new VueRouter({ ... })
router.beforeEach((to, from, next) => {
// ...
})
export default router
Not sure I understand the beginning of your question. You don’t have to import router wherever you are using it. It’s injected into VM’s through $router object – so you can use it in Vue <template> and <script> tags.