Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecation of functional components in Vue 3 #54

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/patterns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,8 @@ With the above code example, the rendered component will be destroyed if a diffe

A functional component is a special SFC, it is basically a component that is **stateless** (meaning no script tag). It only accepts `props` in order to display data.

Note that in Vue 3, the `functional` attribute is deprecated and that using stateful components is the recommended method.

In order to make a SFC a functional one you add the the `functional` attribute to the `<template>` tag like this: `<template functional>`

**fp-component.vue**
Expand Down