Skip to content

Commit 3f45e5b

Browse files
committed
Rename some elements
1 parent 166b5a1 commit 3f45e5b

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

src/components/MarkdownRenderer.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ const { markdown } = defineProps<{
88
import { renderMarkdown } from '@/lib/markdown/render-markdown';
99
import { ref, shallowRef, watch } from 'vue';
1010
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';
1616
import { watchImmediate } from '@vueuse/core';
1717
1818
const module = shallowRef<MDXModule>();
@@ -24,11 +24,11 @@ watchImmediate(() => markdown, async markdown => {
2424
});
2525
2626
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,
3232
};
3333
3434
</script>

0 commit comments

Comments
 (0)