Blame view
api/dashboard/src/pages/panel/dashboard.vue
479 Bytes
0d8c0f816 initial commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
<template> <div> <b-card-group deck> <mltd-card /> <od-card /> </b-card-group> <b-card-group deck class="mt-3"> <ceptd-card /> </b-card-group> </div> </template> <script> import MltdCard from '~/components/MltdCard' import OdCard from '~/components/OdCard' import CeptdCard from '~/components/CeptdCard' export default { name: 'Dashboard', components: { OdCard, MltdCard, CeptdCard } } </script> <style scoped> </style> |