assets
9 months ago
components
9 months ago
composables
9 months ago
data
9 months ago
directives
9 months ago
router
9 months ago
stores
9 months ago
styles
9 months ago
types
9 months ago
utils
9 months ago
views
9 months ago
App.vue
9 months ago
main.ts
9 months ago
App.vue
15 lines
| 1 | <script lang="ts" setup> |
| 2 | import { HPopoverGlobalBackdrop } from '@hostinger/hcomponents'; |
| 3 | |
| 4 | import Modals from '@/components/Modals/Modals.vue'; |
| 5 | </script> |
| 6 | |
| 7 | <template> |
| 8 | <div id="hostinger-reach-app"> |
| 9 | <RouterView /> |
| 10 | <Modals /> |
| 11 | <HToast /> |
| 12 | <HPopoverGlobalBackdrop /> |
| 13 | </div> |
| 14 | </template> |
| 15 |