12 lines
153 B
Vue
12 lines
153 B
Vue
|
<script setup lang="ts">
|
||
|
import { CatalogPage } from '~/src/pages/catalog'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<CatalogPage />
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|