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

11 lines
186 B
Vue

<template>
<p v-html="dataA"/>
</template>
<script>
export default {
props: ['input'],
data: function() { return { dataA: 42 + this.input } }
}
</script>
<style>
</style>