16 lines
373 B
Vue
16 lines
373 B
Vue
<template>
|
|
<div v-if="isDev">
|
|
Rendering the <code>script</code> element is dangerous and is disabled by default. Consider implementing your own <code>ProseScript</code> element to have control over script rendering.
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
src: {
|
|
type: String,
|
|
default: ''
|
|
}
|
|
})
|
|
const isDev = import.meta.dev
|
|
</script>
|