mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
20 lines
256 B
Vue
20 lines
256 B
Vue
<template>
|
|
<div>
|
|
<slot v-if="activeTab"></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: "TableOption",
|
|
props: ['title', 'icon'],
|
|
data () {
|
|
return {
|
|
activeTab: false
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|