1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 17:29:17 +08:00

71 lines
1.8 KiB
Vue
Raw Normal View History

2022-08-17 17:46:49 +08:00
<template>
2022-10-20 18:45:47 +08:00
<div>
<el-card class="topCard">
<el-radio-group v-model="active">
<el-radio-button class="topButton" size="large" @click="routerTo('/databases')" label="mysql">
Mysql
</el-radio-button>
<el-radio-button class="topButton" size="large" @click="routerTo('/databases/redis')" label="redis">
Redis
</el-radio-button>
</el-radio-group>
</el-card>
</div>
2022-08-17 17:46:49 +08:00
</template>
<script lang="ts" setup>
2022-10-20 18:45:47 +08:00
import { onMounted, ref } from 'vue';
import { useRouter } from 'vue-router';
const router = useRouter();
interface MenuProps {
activeName: string;
}
const props = withDefaults(defineProps<MenuProps>(), {
activeName: 'mysql',
});
const active = ref('mysql');
onMounted(() => {
if (props.activeName) {
active.value = props.activeName;
}
});
const routerTo = (path: string) => {
router.push({ path: path });
};
2022-08-17 17:46:49 +08:00
</script>
2022-10-20 18:45:47 +08:00
<style>
.topCard {
--el-card-border-color: var(--el-border-color-light);
--el-card-border-radius: 4px;
--el-card-padding: 0px;
--el-card-bg-color: var(--el-fill-color-blank);
}
.topButton .el-radio-button__inner {
display: inline-block;
line-height: 1;
white-space: nowrap;
vertical-align: middle;
background: var(--el-button-bg-color, var(--el-fill-color-blank));
border: 0;
font-weight: 350;
border-left: 0;
color: var(--el-button-text-color, var(--el-text-color-regular));
text-align: center;
box-sizing: border-box;
outline: 0;
margin: 0;
position: relative;
cursor: pointer;
transition: var(--el-transition-all);
-webkit-user-select: none;
user-select: none;
padding: 8px 15px;
font-size: var(--el-font-size-base);
border-radius: 0;
}
</style>