mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-10 08:05:00 -04:00
14 lines
304 B
Vue
14 lines
304 B
Vue
![]() |
<script lang="ts" setup>
|
||
|
import { demoRoutes } from './demo.routes';
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div grid grid-cols-5 gap-2>
|
||
|
<c-card v-for="{ name } of demoRoutes" :key="name" :title="String(name)">
|
||
|
<c-button :to="{ name }">
|
||
|
{{ name }}
|
||
|
</c-button>
|
||
|
</c-card>
|
||
|
</div>
|
||
|
</template>
|