product.vue 513 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div id="product">
  3. <el-row>
  4. <el-col :span="24">
  5. <p>product</p>
  6. </el-col>
  7. </el-row>
  8. </div>
  9. </template>
  10. <script>
  11. import { mapState, createNamespacedHelpers } from 'vuex';
  12. export default {
  13. metaInfo() {
  14. return { title: this.$route.meta.title };
  15. },
  16. name: 'product',
  17. props: {},
  18. components: {},
  19. data: function() {
  20. return {};
  21. },
  22. created() {},
  23. methods: {},
  24. computed: {
  25. ...mapState(['user']),
  26. },
  27. };
  28. </script>
  29. <style lang="less" scoped></style>