0
0
Fork 0
salix-front-mindshore-fork2/test/cypress/wrappers/LayoutContainer.vue

21 lines
363 B
Vue

<template>
<QLayout>
<component :is="component" v-bind="$attrs" />
</QLayout>
</template>
<script>
import { defineComponent } from 'vue';
export default defineComponent({
name: 'LayoutContainer',
inheritAttrs: false,
props: {
component: {
type: Object,
required: true,
},
},
});
</script>