Код IT
← Каталог

Первая программа на Vue.js — Дочерний компонент

Фрагмент из «Первая программа на Vue.js»: Дочерний компонент.

vue javascriptencyclopedia3-ecosystem-2-frontend-frameworks-2-vue-282 embed URL статья в энциклопедии
Vue main.vue
<script setup>

import { ref } from 'vue'
import Counter from './components/Counter.vue'

const count = ref(0)
</script>

<template>
  <Counter
    :value="count"
    @increment="count++"
    @decrement="count--"
    @reset="count = 0"
  />
</template>
<script setup>

import { ref } from 'vue'
import Counter from './components/Counter.vue'

const count = ref(0)
</script>

<template>
  <Counter
    :value="count"
    @increment="count++"
    @decrement="count--"
    @reset="count = 0"
  />
</template>