From c12a6564a06703bf8aa24b33e2d1d9c6a3431ca9 Mon Sep 17 00:00:00 2001 From: hikaru Date: Wed, 13 Oct 2021 18:07:03 +0900 Subject: [PATCH] docs: fix plugin default export notation (#908) --- docs/content/1.getting-started/5.migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/1.getting-started/5.migration.md b/docs/content/1.getting-started/5.migration.md index cbcd7dcc9f..5e0e0c7e50 100644 --- a/docs/content/1.getting-started/5.migration.md +++ b/docs/content/1.getting-started/5.migration.md @@ -123,7 +123,7 @@ import Vuelidate from 'vuelidate' Vue.use(Vuelidate) -export default {} +export default () => { } ``` ::