mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
229 B
Vue
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>
|