https://github.com/younusaliakash/vue-events-reactivity
It's basically a repository of vue.js 3's various reactivities in practice. Where the last branch developed a very simple light on off reactivity UI.
https://github.com/younusaliakash/vue-events-reactivity
vue3 vuejs
Last synced: 3 months ago
JSON representation
It's basically a repository of vue.js 3's various reactivities in practice. Where the last branch developed a very simple light on off reactivity UI.
- Host: GitHub
- URL: https://github.com/younusaliakash/vue-events-reactivity
- Owner: younusaliakash
- Created: 2023-07-27T13:00:15.000Z (almost 2 years ago)
- Default Branch: light-on-off-reactivity
- Last Pushed: 2023-11-08T16:17:19.000Z (over 1 year ago)
- Last Synced: 2025-02-01T05:18:24.540Z (4 months ago)
- Topics: vue3, vuejs
- Language: Vue
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue.js 3 Reactivity Examples Repository
This repository serves as a collection of practical examples showcasing Vue.js 3's reactivity features in action. Each branch demonstrates different aspects of reactivity in Vue.js 3, providing valuable insights and hands-on experience for developers.
## Latest Development: Light On/Off Reactivity UI
The most recent branch in this repository features a straightforward yet insightful example: a simple light on/off reactivity user interface. This example utilizes several key Vue.js 3 reactivity concepts, including:
- **`ref`**: Utilizes the `ref` function to create reactive references, allowing for efficient tracking of changes in the UI state.
- **`reactive`**: Demonstrates the usage of the `reactive` function to create reactive objects, enabling seamless reactivity in the UI components.
- **`reactive` Array of Vue 3**: Illustrates how to use `reactive` to create reactive arrays in Vue.js 3, enabling dynamic updates and rendering based on array modifications.By exploring this branch, developers can gain practical experience in implementing reactivity in Vue.js 3 applications, enhancing their understanding of these essential concepts.