https://github.com/innei/vue-swipeable-view
https://github.com/innei/vue-swipeable-view
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/innei/vue-swipeable-view
- Owner: Innei
- Created: 2022-12-03T11:48:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-18T15:13:51.000Z (over 2 years ago)
- Last Synced: 2025-02-04T10:56:51.112Z (over 1 year ago)
- Language: TypeScript
- Size: 592 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Rollup Typescript library template
A simple Vue3 TypeScript library template. Quick to start dev, build a Vue3 Component library.
Please use pnpm do this.
```sh
pnpm i
```
# Usage
### Package
Bundle your source code via tsc, rollup.
```
npm run package
```
### Dev
Start dev mode by Vite.
```
npm run dev
```
### Deploy
Deploy example to GitHub Pages.
```
npm run deploy
npm run publish
```
# Additional
## PostCSS & CSS Module
Enable default now.
Nest selector is supported too.
To build css extract a file not bundle into js, un-comment this.
```ts
css({
extract: true,
})
```