Files
vue-ts-example/src/pages/Page/MDPageImportMD.page.vue
严浩 695e583136
All checks were successful
/ build-and-deploy-to-vercel (push) Successful in 3m7s
/ lint-build-and-check (push) Successful in 5m27s
/ playwright (push) Successful in 1m40s
/ surge (push) Successful in 3m10s
/ cleanup_surge (push) Successful in 49s
feat: 添加对 .md 文件的类型声明
2025-05-02 23:10:38 +08:00

12 lines
149 B
Vue

<script setup lang="ts">
import MD from './MDPageImportMD.md';
</script>
<template>
<div>
<MD />
</div>
</template>
<style scoped></style>