jiuyiUniapp/jiuyi/pages/shop/commodity/components/jy-details/index.vue

25 lines
579 B
Vue

<!-- 商品详情 -->
<template>
<view class="bfff">
<!-- 标题 -->
<JyGuidance :titleStyle="{
'color': '#666666',
'font-size': '30rpx',
'font-weight': 600
}" title="宝贝详情" isPath :isShowIcon="false"></JyGuidance>
<!-- 商品详情 -->
<view class="content" v-html="content"></view>
</view>
</template>
<script setup>
// 引入商品详情
import { ref, onMounted } from 'vue'
import JyGuidance from '../jy-guidance'
const content = ref(`
<h1>123</h1>
`)
onMounted(() => {
})
</script>