whychdw
2019-07-31 902f1cf4d57c2076ecba66074cb2120b6c6f53c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
    <TabPane :label="label">
        <div class="page-view">
            <router-view :name="name"></router-view>
        </div>
    </TabPane>
</template>
<script>
export default {
    props:{
        label:{
            type: String,
            required: true
        },
        name: {
            type: String,
            required: true
        }
    }
}
</script>