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

docs (#134): add functional components to migration guide #135

Merged
merged 3 commits into from
Jul 7, 2020
Merged
Changes from 1 commit
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
6 changes: 5 additions & 1 deletion src/guide/migration/functional-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

In terms of what has changed, at a high level:

For more context, be sure to read the rest of the guide.
- Performance gains from v2 for functional components are now negligible in v3, so we recommend just using stateful components
- `functional` attribute on single-file component `<template>` is deprecated
- Functional components can only be created using a plain function that receives `props` and `context` (i.e., `slots`, `attrs`, `emit`)

For a more in-depth explanation, please continue reading on!
bencodezen marked this conversation as resolved.
Show resolved Hide resolved

## Introduction

Expand Down