Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/skysign/vite-vue3-typescript-webcomponent

To develop Web Component by using Vite + Vue 3 + typescript.
https://github.com/skysign/vite-vue3-typescript-webcomponent

Last synced: about 2 months ago
JSON representation

To develop Web Component by using Vite + Vue 3 + typescript.

Lists

README

        

# ⚡Vite + Vue 3 + Typescript + Web Component

This is a boiler plate to show how to develop Web Component by using Vite + Vue 3 + typescript.

Especially, it might be helpful to implement small part UI by using vue3 + typescript,
while you work on big legacy web project.

# How to run

Please run steps below to run it as development mode.
`````
git clone https://github.com/skysign/vite-vue3-typescript-webcomponent.git
cd vite-vue3-typescript-webcomponent
npm install
npm run dev
`````

Now you can see two buttons, and numbers are increasing by clicking.
One web component have two buttons and

# How to release

Please run 'build' not 'dev'.
`````
npm run build
`````

You can see that html, js files are generated in './dist' folder.

Please run simple web server to see how web component works in browser.
`````
npx http-server ./dist
`````