Validate

On this page

How it works

world
vue
<template>
  <ul>
    <c-errors
      v-slot="{ error }"
      state-for="original-state://test"
    >
      {{ error.instancePath }} {{ error.message }}
    </c-errors>
  </ul>

  <c-input
    state-src="original-state://test"
    state-path="hello"
  />
  <c-label
    state-src="original-state://test"
    state-path="hello"
  />
</template>

<script setup>

</script>