add suno page

This commit is contained in:
RockYang
2024-07-17 18:58:09 +08:00
parent 37368fe13f
commit b248560ba2
20 changed files with 677 additions and 10 deletions

View File

@@ -0,0 +1,25 @@
<template>
<el-switch v-model="model" :size="size"
@change="$emit('update:value', $event)"
style="--el-switch-on-color:#555555;--el-color-white:#0E0808"/>
</template>
<script>
export default {
name: 'BlackSwitch',
props: {
value : Boolean,
size: {
type: String,
default: 'default',
}
},
data() {
return {
model: this.value
}
}
}
</script>