@@ -8,11 +8,11 @@ const { markdown } = defineProps<{
8
8
import { renderMarkdown } from ' @/lib/markdown/render-markdown' ;
9
9
import { ref , shallowRef , watch } from ' vue' ;
10
10
import { compileStringAsync as sassCompileString } from ' sass' ;
11
- import AtImgCe from ' ./custom-elements/AtImg.ce .vue' ;
12
- import AtLinkCe from ' ./custom-elements/AtLink.ce .vue' ;
13
- import AtAnchorCe from ' ./custom-elements/AtAnchor.ce .vue' ;
14
- import AtWebStylesheetCe from ' ./custom-elements/AtWebStylesheet.ce .vue' ;
15
- import OmitVanillaCssCe from ' ./custom-elements/OmitVanillaCss.ce .vue' ;
11
+ import AtImg from ' ./custom-elements/AtImg.vue' ;
12
+ import AtLink from ' ./custom-elements/AtLink.vue' ;
13
+ import AtAnchor from ' ./custom-elements/AtAnchor.vue' ;
14
+ import AtWebStylesheet from ' ./custom-elements/AtWebStylesheet.vue' ;
15
+ import OmitVanillaCss from ' ./custom-elements/OmitVanillaCss.vue' ;
16
16
import { watchImmediate } from ' @vueuse/core' ;
17
17
18
18
const module = shallowRef <MDXModule >();
@@ -24,11 +24,11 @@ watchImmediate(() => markdown, async markdown => {
24
24
});
25
25
26
26
const components: MDXComponents = {
27
- img: AtImgCe ,
28
- link: AtLinkCe ,
29
- a: AtAnchorCe ,
30
- Stylesheet: AtWebStylesheetCe ,
31
- OmitVanillaCss: OmitVanillaCssCe ,
27
+ img: AtImg ,
28
+ link: AtLink ,
29
+ a: AtAnchor ,
30
+ Stylesheet: AtWebStylesheet ,
31
+ OmitVanillaCss: OmitVanillaCss ,
32
32
};
33
33
34
34
</script >
0 commit comments