mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
133 B
Vue
9 lines
133 B
Vue
<template>
|
|
<p v-html="input"/>
|
|
</template>
|
|
<script setup>
|
|
const { input } = defineProps(['input']);
|
|
</script>
|
|
<style>
|
|
</style>
|