12345678910111213141516171819202122232425262728293031323334 |
- <!--
- * @Author: zhangyu
- * @Date: 2020-05-08 15:55:30
- * @Info:
- * @LastEditTime: 2020-05-08 16:49:36
- -->
- <template>
- <div>
- <saga-toolbar></saga-toolbar>
- <saga-brand></saga-brand>
- </div>
- </template>
- <script>
- import sagaBrand from "@/components/brand/sagaBrand"
- import sagaToolbar from "@/components/brand/brandTool"
- export default {
- name: "brand",
- components: {
- sagaBrand,
- sagaToolbar
- },
- created() {},
- mounted() {},
- data() {
- return {
- }
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- </style>
|