123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div id="Dashboard">
- <el-row>
- <el-col :span="24" class="main">
- <breadcrumb :breadcrumbTitle="this.$route.meta.title"></breadcrumb>
- <el-col :span="24" class="container"> </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import breadcrumb from '@c/common/breadcrumb.vue';
- import { mapState, createNamespacedHelpers } from 'vuex';
- import bus from '@/components/common/bus';
- export default {
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- name: 'Dashboard',
- props: {},
- components: {
- breadcrumb,
- },
- data: function() {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- },
- };
- </script>
- <style lang="less" scoped></style>
|