mirror of
https://github.com/github/codeql.git
synced 2026-04-19 05:54:00 +02: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>
|