This commit is contained in:
李志鹏
2026-05-19 10:05:55 +08:00
parent 4254f291f4
commit c72dd4a455
4 changed files with 37 additions and 3 deletions

View File

@@ -1,11 +1,17 @@
<template>
<div class="orders">No order has been made yet.</div>
<div class="orders">
<tip-box>
<router-link class="link" to="/">Browse products</router-link>
</tip-box>
</div>
</template>
<script setup lang="ts">
import { computed, ref } from 'vue'
import tipBox from './tip-box.vue'
</script>
<style scoped lang="less">
.orders {
width: 100%;
}
</style>