25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
400 B

  1. <script>
  2. import Layout from "@/layout/custom.vue";
  3. export default {
  4. name: "SAMPLE-PAGE",
  5. components: {
  6. Layout,
  7. },
  8. };
  9. </script>
  10. <template>
  11. <Layout>
  12. <BRow>
  13. <BCol sm="12">
  14. <BCard no-body>
  15. <BCardHeader>
  16. <h5>Hello card</h5>
  17. </BCardHeader>
  18. <BCardBody> </BCardBody>
  19. </BCard>
  20. </BCol>
  21. </BRow>
  22. </Layout>
  23. </template>