书签 删除功能

This commit is contained in:
simple321vip
2022-04-05 00:52:20 +08:00
parent 2bbb02ef3d
commit 5c78d43302
5 changed files with 92 additions and 81 deletions
-52
View File
@@ -1,52 +0,0 @@
<script setup lang="ts">
import { ref } from 'vue'
defineProps<{ msg: string }>()
const count = ref(0)
</script>
<template>
<h1>{{ msg }}</h1>
<p>
Recommended IDE setup:
<a href="https://code.visualstudio.com/" target="_blank">VSCode</a>
+
<a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>
</p>
<p>See <code>README.md</code> for more information.</p>
<p>
<a href="https://vitejs.dev/guide/features.html" target="_blank">
Vite Docs
</a>
|
<a href="https://v3.vuejs.org/" target="_blank">Vue 3 Docs</a>
</p>
<button type="button" @click="count++">count is: {{ count }}</button>
<p>
Edit
<code>components/HelloWorld.vue</code> to test hot module replacement.
</p>
</template>
<style scoped>
a {
color: #42b983;
}
label {
margin: 0 0.5em;
font-weight: bold;
}
code {
background-color: #eee;
padding: 2px 4px;
border-radius: 4px;
color: #304455;
}
</style>
+29
View File
@@ -0,0 +1,29 @@
<template>
<span class="dialog-footer">
<el-button @click="concel">取消</el-button>
<el-button type="primary" @click="submit">确认</el-button>
</span>
</template>
<script setup lang="ts">
type Props = {
delete_id: any
}
const props = defineProps<Props>()
const emit = defineEmits(['on-concel', 'on-submit'])
const concel = () => {
emit('on-concel')
}
const submit = () => {
emit('on-submit', props.delete_id)
}
</script>
<style>
.dashboard {
background-color: beige;
}
</style>