mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
241 B
Vue
13 lines
241 B
Vue
<template>
|
|
<p v-html="input"/>
|
|
</template>
|
|
<script setup lang="ts">
|
|
const { input, numericInput, booleanInput } = defineProps<{
|
|
input: string,
|
|
numericInput: number,
|
|
booleanInput: boolean,
|
|
}>();
|
|
</script>
|
|
<style>
|
|
</style>
|