assets
3 months ago
components
5 days ago
composables
5 days ago
data
5 days ago
directives
10 months ago
router
1 year ago
stores
5 days ago
styles
5 days ago
types
5 days ago
utils
10 months ago
views
5 days ago
App.vue
1 year ago
main.ts
8 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 |