mirror of
https://github.com/ZiuChen/ClipboardManager.git
synced 2025-12-24 02:59:59 +08:00
feat: 拆分组件 用Vue3重写Main.vue
This commit is contained in:
42
src/cpns/ClipSwitch.vue
Normal file
42
src/cpns/ClipSwitch.vue
Normal 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>
|
||||
Reference in New Issue
Block a user