mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
10 lines
238 B
Vue
10 lines
238 B
Vue
|
|
<template>
|
||
|
|
<Input v-model:model-value="contentWarning" placeholder="Put your content warning here" />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import { Input } from "../ui/input";
|
||
|
|
|
||
|
|
const contentWarning = defineModel<string>();
|
||
|
|
</script>
|