feat: 拆分组件 用Vue3重写Main.vue

This commit is contained in:
ZiuChen
2022-08-15 15:18:19 +08:00
parent 94161453b4
commit 6b63c7a4f7
7 changed files with 263 additions and 249 deletions

42
src/cpns/ClipSwitch.vue Normal file
View File

@@ -0,0 +1,42 @@
<template>
<div class="clip-switch">
<div class="clip-switch-items">
<template v-for="tab of tabs">
<div
:class="{ 'clip-switch-item': true, active: activeTab === tab.type }"
@click="onNavClick(tab.type)"
>
{{ tab.name }}
</div>
</template>
</div>
<slot name="SidePanel"></slot>
</div>
</template>
<script setup>
import { ref } from 'vue'
const tabs = ref([
{ name: '📚 全部', type: 'all' },
{ name: '📋 文字', type: 'text' },
{ name: '⛺ 图片', type: 'image' },
{ name: '📂 文件', type: 'file' }
])
const activeTab = ref('all')
const emit = defineEmits(['onNavClick'])
const toggleNav = (type) => (activeTab.value = type)
const onNavClick = (type) => {
toggleNav(type)
emit('onNavClick', type)
}
defineExpose({
tabs,
activeTab,
toggleNav
})
</script>
<style lang="less" scoped>
@import '../style/cpns/clip-switch.less';
</style>