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

13 lines
229 B
Vue

<template>
<p v-html="input"/>
</template>
<script setup>
const { input, numericInput, booleanInput } = defineProps({
input: String,
numericInput: Number,
booleanInput: Boolean,
});
</script>
<style>
</style>