mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 22:15:13 +00:00
19 lines
413 B
Vue
19 lines
413 B
Vue
<script setup lang="ts">
|
|
import { defineAsyncComponent } from 'vue'
|
|
import type { DefaultTheme } from 'vitepress/theme'
|
|
|
|
defineProps<{
|
|
carbonAds: DefaultTheme.CarbonAdsOptions
|
|
}>()
|
|
|
|
const VPCarbonAds = __CARBON__
|
|
? defineAsyncComponent(() => import('./VPCarbonAds.vue'))
|
|
: () => null
|
|
</script>
|
|
|
|
<template>
|
|
<div class="VPDocAsideCarbonAds">
|
|
<VPCarbonAds :carbon-ads="carbonAds" />
|
|
</div>
|
|
</template>
|