Manoj Kumar
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Composition API in Vue3 ###### tags: `Vue3` ### Table of Content [TOC] ### Why Composition API ? * Why Composition API is used in Vue3. Let see wat are the main drawbacks in Vue2 first. - Readability issues as component grows. - Code reuse pattern has drawbacks in Vue2 - Limited Typescript support. * How component structure looks like in Vue 2 ![](https://i.imgur.com/tuX7GH1.png) * Vue 3 solves this by new composition API syntax. ![](https://i.imgur.com/1hY60gS.png) **Note:** This is optional, you can still write code in earlier syntax as well. * Composition API syntax. ![](https://i.imgur.com/p11eXCy.png) * This leads to having our code more organised. ![](https://i.imgur.com/eV4OvbR.png) * In Vue2, No perfect way to reuse logic between components. We have mixins, but its still have below drawbacks. ![](https://i.imgur.com/XhEUAe7.png) * We can also have mixin factories and import that code in components and use. ![](https://i.imgur.com/JLWImMC.png) * But this still have below drawbacks ![](https://i.imgur.com/phOelwb.png) * We also have scoped slots in Vue2, still has few drawbacks. ![](https://i.imgur.com/yme15yf.png) * Now in Vue3 we have 4th way of reuse the fucntions using **Composition API**. Only drawback is now we have the normal and advance syntax to use in Vue 3. ![](https://i.imgur.com/GMFV38g.png) * Composition API is just more advance syntax. So when to use this? - If you need more typescript support. - Components is too large and needs to organised by feature. - Need to reuse code across components. - Team perfer this syntax. * Setup method is first executed before anything in lifecycle hook. ![](https://i.imgur.com/gTUydQL.png) * **Props** in setup method is first argument. ![](https://i.imgur.com/qtEB4tW.png) * **Context** in setup method is second argument. ![](https://i.imgur.com/O9KaQ4J.png) * Reactive reference. ![](https://i.imgur.com/kT8UkW6.png) ![](https://i.imgur.com/42Ukw1T.png) * Return things that needs access from template ![](https://i.imgur.com/q4uKhh7.png) * We can also use composition API in Vue2 as well. So in Vue2 you need to import like below to use. ![](https://i.imgur.com/DEdskBp.png) * How the regular method is written usually in Vue2. ![](https://i.imgur.com/j3FylMS.png) * Using Vue3 composition API, how we can write our methods? Just like normal javascript functions. ![](https://i.imgur.com/lPOoQ9m.png) * We cannot directly increment the object, as it reactive reference. ![](https://i.imgur.com/uzGhCxT.png) * We need to increment like below ![](https://i.imgur.com/jMTJcz0.png) * But in template you don't need to use `capacity.value` to show the capacity value, because Vue automatically expose the inner value by default. ![](https://i.imgur.com/B1PRhGz.png) * How to write computed property in Vue 3 ![](https://i.imgur.com/ecrWbRN.png) ### Reactive Syntax * Alternative reative proporty declaration syntax. ![](https://i.imgur.com/ZambUPM.png) * If you use `recative` then no need to use `.value` in the computed property. And also instead of returning the computed property to display the value in template, you can return the entire event. * Template now reference the event object. But to display the value everytime you need to use `event.`. To solve this check below `toRefs` ![](https://i.imgur.com/5h3kee3.png) * Using `toRefs` to create reactive reference. ![](https://i.imgur.com/BSkCKf9.png) ### Modularizing * This is our current code. ![](https://i.imgur.com/JndSMGb.png) * Move into function to organize by feature ![](https://i.imgur.com/qkj2Id7.png) * To make the code reusable across other components, move the code into an file & export it. Then in our component import it. ![](https://i.imgur.com/6eoaxYz.png) * Adding another composition function into the component. ![](https://i.imgur.com/37S6PF6.png) * But here, we don't see what objects are been returned from which function. To solve this we can create local objects like below and return it. This explicitly shows which objects being received from composition function. ![](https://i.imgur.com/veQoo1U.png) ### Lifecycle hooks * These are the lifecycle hooks provided by Vue earlier. ![](https://i.imgur.com/luozfrc.png) * Below are some of the new Vue2 lifecycle introduced. ![](https://i.imgur.com/gZ12Pzv.png) * In Vue3 below lifecycle can also be used as new name. Changed just for better naming convention. ![](https://i.imgur.com/DAAyqa9.png) * When using Composition API, how to use the lifecycle hooks. ![](https://i.imgur.com/KctHd6p.png) * These are the lifecycle hooks can be used inside the setup method of composition API. ![](https://i.imgur.com/Rhx5dFo.png) * Created hooks in composition API. ![](https://i.imgur.com/1b8LhnY.png) * Two new lifecycle hook is added in Vue3 for better debugging purpose. ![](https://i.imgur.com/m2dIsd2.png) ### Watch * Setup() is called only once like when component is loaded like `created()` hook. ![](https://i.imgur.com/bGcEBTb.png) * So in order to use watch with reactivity, you need to use **watchEffect** ![](https://i.imgur.com/7zuyBBB.png) * Watch syntax to monitor specfic changes. ![](https://i.imgur.com/F0EoV0L.png) * Watching multiple data sources using array. ![](https://i.imgur.com/o7EPRJr.png) * If you use watch `Number of events` starts out to be empty. watch is lazy load by default, as didn't get run on initial load. So inorder to get it run on initial load, you need to use `immedidate` as `True` ![](https://i.imgur.com/XkrjA32.png) * Whats the difference between `watchEffect` and `watch` - `watchEffect` takes only single argument which is callback. `Watch` will take mutlipe arguments including the reactive components we need to watch.

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully