cyber/src/pages/blogPages/submitBlogPages/SubmitBlog_step_interaction.vue
Guarp af2ba6b1a3 添加缓存逻辑;
完成稿件管理逻辑;
新增博客编辑器;
新增博客;
新增请求测试小工具;
修改sweetheart样式;
打包用户头像组件;
新增导航栏隐藏功能;
新增3D打枪小游戏;
2025-03-13 23:52:31 +08:00

37 lines
705 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>