@heatsrc/vuedc
TypeScript icon, indicating that this package has built-in type declarations

3.3.2 • Public • Published

Vue Declassified CLI tool

npm | github | vuedc playground

This CLI tool converted Vue 2/3 Class Components, i.e., vue-class-component, into Vue 3 Script Setup using Vue Declassified (npm). VueDc supports both Vue Class Component production (@Component) and the v8 RC (@Options) which was originally being developed to support Vue 3 but subsequently abandoned before release.

Install

Installing is optional as the mainstream package managers have the ability to hot load packages.

pnpm add -g @heatsrc/vuedc
# or
npm install -g @heatsrc/vuedc
# or
yarn global add @heatsrc/vuedc

NOTE: You will need Node 18+ for VueDc to work. Consider using a node version manager, e.g., nvm, to make switching easy if your project is locked to an older version.

Usage

Converting a Vue Class Component to Script API

vuedc -i MyComponent.vue -o MyOutput.vue

When provided a Vue file Vuedc will convert a Vue Class Component to Script API and update the script body. Current Vuedc does not make changes in the template but does best effort to name variables the same as they were in the class to avoid needing to update. There are a few cases where this may fail, mainly when using $refs with the same name as properties or accessors on the class, Vuedc will attempt to warn in the results.

Making Composable functions out of Vue Class Component Mixins

vuedc -i MyMixin.ts -y

When provided a .ts file Vuedc will make composable function analogues of any Vue Class Component Mixins found in the file and append them to the file.

Note: Vuedc also leaves the Mixin in place as it is not certain the mixin may be used by other class based components.

@heatsrc/vuedc --help

$ vuedc -h

Usage: vuedc [options]

Convert Vue Class Components to Vue 3 Composition API

Options:
  -V, --version        output the version number
  --ignore-collisions  Will not stop on collisions
  -p, --project        Use compiler options from tsconfig.json file, vuedc will attempt to derive the `tsconfig.json` from the input file.
                       WARNING: this option is significantly slower than not using it, only enable if you need external references (e.g., deriving sources of properties from mixins)!
  -i, --input <file>   Input Vue file
  -o, --output <file>  Output file, if not specified input file will be overwritten
  -y, --yes            Overwrite output file without asking
  -h, --help           display help for command

Hot loading

pnpm dlx vuedc -i MyComponent.vue -o MyOutput.vue
# or
npx vuedc -i MyComponent.vue -o MyOutput.vue
# or
yarn dlx vuedc -i MyComponent.vue -o MyOutput.vue

Package Sidebar

Install

npm i @heatsrc/vuedc

Weekly Downloads

9

Version

3.3.2

License

ISC

Unpacked Size

17.9 kB

Total Files

9

Last publish

Collaborators

  • heatsrc