webfansplz / vuejs-challenges

Collection of Vue.js challenges
https://vuejs-challenges.netlify.app/
MIT License
2.69k stars 188 forks source link

9 - 依赖注入 #2714

Open zenner3000 opened 2 months ago

zenner3000 commented 2 months ago
<script setup lang="ts">
import { inject } from 'vue'

// Add a piece of code to make the `count` value get injected into the child component.
const count = inject('count')
</script>

<template>
  {{ count }}
</template>