rename: client -> frontend
This commit is contained in:
15
packages/frontend/src/components/MkCode.vue
Normal file
15
packages/frontend/src/components/MkCode.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<XCode :code="code" :lang="lang" :inline="inline"/>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { defineAsyncComponent } from 'vue';
|
||||
|
||||
defineProps<{
|
||||
code: string;
|
||||
lang?: string;
|
||||
inline?: boolean;
|
||||
}>();
|
||||
|
||||
const XCode = defineAsyncComponent(() => import('@/components/MkCode.core.vue'));
|
||||
</script>
|
Reference in New Issue
Block a user