Computer scienceFrontendVue.jsVue 3 SyntaxVue Directives

v-model

Theory

Textarea

Report a typo

Complete writing the textarea element in the view and sync it with the story ref.

<script setup>
import { ref } from 'vue';
const story = ref('');
</script>

<template>
  // your code here
</template>
Enter a short text
___

Create a free account to access the full topic