mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-09 01:50:06 +08:00
22 lines
389 B
Vue
22 lines
389 B
Vue
<template>
|
|
<div>
|
|
<RouterButton :buttons="buttons" />
|
|
<LayoutContent>
|
|
<router-view></router-view>
|
|
</LayoutContent>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const buttons = [
|
|
{
|
|
label: 'PHP',
|
|
path: '/websites/runtimes/php',
|
|
},
|
|
{
|
|
label: 'Node.js',
|
|
path: '/websites/runtimes/node',
|
|
},
|
|
];
|
|
</script>
|