mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 09:19:16 +08:00
0d084861e0
#### What this PR does / why we need it? #### Summary of your change #### Please indicate you've done the following: - [ ] Made sure tests are passing and test coverage is added if needed. - [ ] Made sure commit message follow the rule of [Conventional Commits specification](https://www.conventionalcommits.org/). - [ ] Considered the docs impact and opened a new docs issue or PR with docs changes if needed.
22 lines
376 B
Vue
22 lines
376 B
Vue
<template>
|
|
<div>
|
|
<RouterButton :buttons="buttons" />
|
|
<LayoutContent>
|
|
<router-view></router-view>
|
|
</LayoutContent>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const buttons = [
|
|
{
|
|
label: 'MySQL',
|
|
path: '/databases/mysql',
|
|
},
|
|
{
|
|
label: 'Redis',
|
|
path: '/databases/redis',
|
|
},
|
|
];
|
|
</script>
|