|
- <script>
- import Layout from "@/layout/custom.vue";
-
- export default {
- name: "SAMPLE-PAGE",
- components: {
- Layout,
- },
- };
- </script>
-
- <template>
- <Layout>
- <BRow>
- <BCol sm="12">
- <BCard no-body>
- <BCardHeader>
- <h5>Hello card</h5>
- </BCardHeader>
- <BCardBody> </BCardBody>
- </BCard>
- </BCol>
- </BRow>
- </Layout>
- </template>
|