index.vue 497 Bytes
Newer Older
陈浩玮's avatar
设备  
陈浩玮 committed
1
<template>
陈浩玮's avatar
陈浩玮 committed
2 3 4 5 6 7 8 9
    <a-row :gutter="10">
        <a-col :span="8">
            <LeftTree v-model="treeVale" />
        </a-col>
        <a-col :span="16">
            <RightTable />
        </a-col>
    </a-row>
陈浩玮's avatar
设备  
陈浩玮 committed
10 11 12
</template>

<script>
陈浩玮's avatar
陈浩玮 committed
13 14 15 16 17 18 19 20 21 22 23 24
import RightTable from './components/RightTable.vue';
import LeftTree from './components/LeftTree.vue';

export default {
    components: { RightTable, LeftTree },
    data() {
        return {
            treeVale: {},
        };
    },
    methods: {},
};
陈浩玮's avatar
设备  
陈浩玮 committed
25
</script>