From 3cebe8ef1ab32d8705460c9071f1a3b494111e32 Mon Sep 17 00:00:00 2001 From: Luka Hartwig Date: Thu, 17 Feb 2022 17:30:18 +0100 Subject: [PATCH] Fix define-component params example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed49234..60a8278 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ Aside from migrating Vue 2 apps to Vue 3, this repository also includes some gen - `remove-trivial-root` - this transformation removes trivial root components like `{ render: () => h(App) }` and use `App` as the direct root - `define-component` - - `--param.useCompositionAPI`: `false` by default. When set to `true`, it will import the `defineComponent` helper from `@vue/composition-api` instead of `vue` + - `--params.useCompositionApi`: `false` by default. When set to `true`, it will import the `defineComponent` helper from `@vue/composition-api` instead of `vue` - this transformation adds `defineComponent()` wrapper to `.vue` file exports, and replaces `Vue.extend` calls to `defineComponent` ## Custom Transformation