You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
292 B

1 year ago
<template> 
1 year ago
<div class="main-content">
1 year ago
<product-detail :is-edit='true'></product-detail>
1 year ago
</div>
1 year ago
</template>
<script>
import ProductDetail from './components/ProductDetail'
export default {
name: 'updateProduct',
components: { ProductDetail }
}
</script>
<style>
</style>