add prefix to class

This commit is contained in:
2023-02-27 23:22:20 +10:00
parent 62a3180e53
commit 1b6c5a57e4

View File

@@ -32,7 +32,7 @@ const computedContent = computed(() => {
html = DOMPurify.sanitize(html);
return {
template: `<div class="content">${html}</div>`,
template: `<div class="sm-content">${html}</div>`,
};
});
</script>