mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 14:39:30 -07:00
12 lines
355 B
Vue
12 lines
355 B
Vue
<template>
|
|
<div>
|
|
<title>Vue Bits - Component Index</title>
|
|
<ComponentList :list="componentMetadata" title="Index" sorting="alphabetical" has-favorite-button />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import ComponentList from '@/components/common/ComponentList.vue';
|
|
import { componentMetadata } from '@/constants/Information';
|
|
</script>
|