mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-05-11 10:35:50 +08:00
add eslint prettier unocss
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
<script setup lang="ts">
|
||||
const props = defineProps<{
|
||||
title: string,
|
||||
results: object | null
|
||||
defineProps<{
|
||||
title: string;
|
||||
results: object | null;
|
||||
}>();
|
||||
|
||||
const dialogVisible = ref(false);
|
||||
const handleClose = () => {
|
||||
function handleClose() {
|
||||
dialogVisible.value = false;
|
||||
}
|
||||
const open = () => {
|
||||
function open() {
|
||||
dialogVisible.value = true;
|
||||
}
|
||||
|
||||
defineExpose({
|
||||
open
|
||||
})
|
||||
open,
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@@ -34,13 +34,13 @@ defineExpose({
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang='scss' scope>
|
||||
.dia-log{
|
||||
.results{
|
||||
<style lang="scss" scope>
|
||||
.dia-log {
|
||||
.results {
|
||||
padding: 1em;
|
||||
line-height: 1.5;
|
||||
color: #fff;
|
||||
background: #333;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user