18 lines
338 B
Vue
18 lines
338 B
Vue
|
<script setup>
|
||
|
import {goodStore} from "@/stores/goods/index.js";
|
||
|
import xImage from '@/components/x-image/index.vue'
|
||
|
const {
|
||
|
auctionDetail
|
||
|
} = goodStore()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="px-16px pt-14px">
|
||
|
<div class="text-#575757 text-14px" v-html="auctionDetail.info">
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|