2026-05-18 16:46:55 +08:00
|
|
|
<template>
|
2026-05-19 10:05:55 +08:00
|
|
|
<div class="orders">
|
|
|
|
|
<tip-box>
|
|
|
|
|
<router-link class="link" to="/">Browse products</router-link>
|
|
|
|
|
</tip-box>
|
|
|
|
|
</div>
|
2026-05-18 16:46:55 +08:00
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { computed, ref } from 'vue'
|
2026-05-19 10:05:55 +08:00
|
|
|
import tipBox from './tip-box.vue'
|
2026-05-18 16:46:55 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="less">
|
|
|
|
|
.orders {
|
2026-05-19 10:05:55 +08:00
|
|
|
width: 100%;
|
2026-05-18 16:46:55 +08:00
|
|
|
}
|
|
|
|
|
</style>
|