mirror of
https://github.com/ZiuChen/ClipboardManager.git
synced 2025-12-24 19:49:35 +08:00
feat: 添加卡片组件 重要版本更新将弹出提示更新内容
This commit is contained in:
28
src/views/Notify.vue
Normal file
28
src/views/Notify.vue
Normal file
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<div class="notify">
|
||||
<ClipCard>
|
||||
<template #header>
|
||||
<div class="notify-header">
|
||||
<div class="notify-header-title">通知</div>
|
||||
</div>
|
||||
</template>
|
||||
<div class="notify-content">
|
||||
<div class="notify-content-title">通知标题</div>
|
||||
<div class="notify-content-text">通知内容</div>
|
||||
</div>
|
||||
<template #footer>
|
||||
<div class="notify-footer">
|
||||
<div class="notify-footer-btn">知道了</div>
|
||||
</div>
|
||||
</template>
|
||||
</ClipCard>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import ClipCard from '../cpns/ClipCard.vue'
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
@import '../style';
|
||||
</style>
|
||||
Reference in New Issue
Block a user