Files
codeql/javascript/ql/test/library-tests/frameworks/Vue/single-file-component-6.vue
2025-01-22 10:45:46 +01:00

9 lines
133 B
Vue

<template>
<p v-html="input"/>
</template>
<script setup>
const { input } = defineProps(['input']);
</script>
<style>
</style>