Skip to content
On this page

ZvTextarea

ZvTextarea is a standalone component

INFO

Before you have to import the global css files in your project, follow instructions in Getting Started

Basic usage

vue
<template>
  <ZvTextarea v-model="textareaValue" id="textarea" name="textarea" label="Label" />
</template>

<script lang="ts" setup>
  import ZvTextarea from '@zadigetvoltaire/ui/components/ZvTextarea'
  import { ref } from 'vue'

  const textareaValue = ref()
</script>