-
Notifications
You must be signed in to change notification settings - Fork 21
Vue Composition API: Child Components
Mike Lyttle edited this page May 9, 2023
·
2 revisions
import Vue from "vue";
import { Component } from "vue-property-decorator";
import OtherComponent from "@/components/OtherComponent.vue";
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const options: any = {
components: {
OtherComponent,
},
};
@Component(options)
export default class LandingView extends Vue {
}
import OtherComponent from "@/components/OtherComponent.vue";
-
Developer Standard and Processes
-
Workstation Setup
-
IDE Configuration
-
Application Config
-
RedHat SSO Authorization Server
-
Known Issues