16 lines
292 B
Vue
16 lines
292 B
Vue
<template>
|
|
<div class="orders">
|
|
<tip-box type="warning" title="No order has been made yet." />
|
|
</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>
|