mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 22:15:13 +00:00
15 lines
283 B
Vue
15 lines
283 B
Vue
<script setup lang="ts">
|
|
import { useData } from '../composables/data'
|
|
import VPFeatures from './VPFeatures.vue'
|
|
|
|
const { frontmatter: fm } = useData()
|
|
</script>
|
|
|
|
<template>
|
|
<VPFeatures
|
|
v-if="fm.features"
|
|
class="VPHomeFeatures"
|
|
:features="fm.features"
|
|
/>
|
|
</template>
|