12345678910111213141516171819202122232425 |
- <template>
- <div class="product">
- <productTool/>
- <sagaProduct/>
- </div>
- </template>
- <script>
- import productTool from "../../components/product/productTool";
- import sagaProduct from "../../components/product/sagaProduct";
- export default {
- name: "product",
- components: {productTool, sagaProduct},
- data() {
- return {};
- },
- computed: {},
- methods: {}
- }
- </script>
- <style scoped lang="less">
- </style>
|