Skip to content

Commit 60ff9e8

Browse files
author
Iori Ichinose
committed
fix: undefined custom element
1 parent 8d3044d commit 60ff9e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/MarkdownContainer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const theme = computed(() =>
1414
1515
const CustomSelect = defineCustomElement(CustomSelectCe);
1616
17-
if (customElements.get('mira-select') != undefined) {
17+
if (customElements.get('mira-select') == undefined) {
1818
customElements.define('mira-select', CustomSelect);
1919
}
2020
</script>

0 commit comments

Comments
 (0)