20 lines
208 B
Vue
20 lines
208 B
Vue
|
<script setup>
|
||
|
// 商品修改历史
|
||
|
|
||
|
import {
|
||
|
ref,
|
||
|
reactive,
|
||
|
watch,
|
||
|
computed
|
||
|
} from 'vue'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<view class="app">
|
||
|
<view class=""></view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|