Are you using Swagger or any Rest API standards or just your own approach?
We’re building our .Net Core API via Swagger / OpenAPI.
Are you using Swagger or any Rest API standards or just your own approach?
We’re building our .Net Core API via Swagger / OpenAPI.
Awesome Scott - thanks!
Hi
I want to have a list of components that may be re-used throughout the application. What is the recommended practice for this?
I was thinking of creating my own boot/plug-in but the examples I’ve seen from the docs (https://forum.quasar-framework.org/topic/3721/how-to-write-a-custom-component-and-use-it/3) suggest using a common name like components.js
import TestDynamic2 from 'components/TestDynamic2.vue'
export default async ({ Vue }) => {
Vue.component('TestDynamic2', TestDynamic2)
}
Is that the recommended approach or should I look at building its own component boot/plug-in?