完成稿件管理逻辑; 新增博客编辑器; 新增博客; 新增请求测试小工具; 修改sweetheart样式; 打包用户头像组件; 新增导航栏隐藏功能; 新增3D打枪小游戏;
37 lines
705 B
Vue
37 lines
705 B
Vue
<script setup>
|
||
import {ref} from "vue";
|
||
|
||
const props = defineProps({
|
||
set: {
|
||
type: Boolean
|
||
}}
|
||
)
|
||
|
||
const allowComment = ref(props.set || null);
|
||
|
||
const emit = defineEmits(['selected']);
|
||
|
||
const sendMessage = () => {
|
||
emit('selected', allowComment);
|
||
};
|
||
</script>
|
||
|
||
<template>
|
||
<el-container>
|
||
<div class="title">是否允许评论?</div>
|
||
<el-radio-group v-model="allowComment" class="ml-4" @change="sendMessage">
|
||
<el-radio :label="true" size="large">是</el-radio>
|
||
<el-radio :label="false" size="large">否</el-radio>
|
||
</el-radio-group>
|
||
</el-container>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.el-container {
|
||
flex-direction: column;
|
||
gap: 20px;
|
||
}
|
||
.title {
|
||
font-size: 30px;
|
||
}
|
||
</style> |