jscomp/creator

There is no license information available for the latest version (v0.0.2) of this package.

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/jscomp/creator

v0.0.2 2022-12-28 21:36 UTC

This package is auto-updated.

Last update: 2025-10-09 20:23:59 UTC


README

It creates components of popular Javascript frameworks used with Laravel.

Setup

  composer require jscomp/creator

Examples

Vue Option Api Component

php artisan component:create FooComponent vue

Vue Composition Api Component

php artisan component:create BarComponent vue -C

React Component

php artisan component:create BazComponent react

Svelte Component

php artisan component:create ExampleComponent svelte
php artisan component:create <1:componentName> <2:libraryName> <--C|compositionApi>

Argument Descriptions

  • componentName: Name of component.
  • libraryName: The Javascript framework using.
  • compositionApi: If you are using vue js, if you do not specify --option it will create the option api component, if you use the --option it will create the composition api component