alipay-emulator/pages/shopping/taobao/list-index.vue

18 lines
284 B
Vue

<template>
<view class="container">
<view v-for="item in mockOrderList" :key="item.id">
{{ item.name }}
</view>
</view>
</template>
<script setup>
import { ref } from 'vue';
/**
* 模拟订单列表
*/
const mockOrderList = ref([]);
</script>
<style lang="less"></style>