```typescript import { Vue, Component, Prop } from "vue-property-decorator"; import Layout from "../Layout.vue"; @Component({ components: { Layout, } }) export default class extends Vue { // someing code } ``` Is there a feasible solution for the above code?