<template>
<view>
商品详情页
{{ goods.title }}
</view>
</template>
<script>
import { getGoods } from '@/utils/api/goods.js'
export default{
data () {
return {
goods:{}
}
},
async onLoad( e ){
let res = await getGoods(e.id);
this.goods = res.data;
}
}
</script>
<style>
</style>