14 lines
131 B
Vue
14 lines
131 B
Vue
|
<script setup lang="ts">
|
||
|
navigateTo({
|
||
|
path: '/catalog',
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div />
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|