Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qqxs/vue2.6-tsx-starter
https://github.com/qqxs/vue2.6-tsx-starter
class jsx tsx vue-property-decorator vue2
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/qqxs/vue2.6-tsx-starter
- Owner: qqxs
- Created: 2020-05-22T09:53:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T22:14:46.000Z (over 1 year ago)
- Last Synced: 2024-05-29T19:07:05.385Z (7 months ago)
- Topics: class, jsx, tsx, vue-property-decorator, vue2
- Language: TypeScript
- Homepage:
- Size: 660 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue2.6-tsx-starter
## example
[demo](./public/demo.png)
## Project setup
```
yarn install
```### Compiles and hot-reloads for development
```
yarn serve
```### Compiles and minifies for production
```
yarn build
```### Run your unit tests
```
yarn test:unit
```### Lints and fixes files
```
yarn lint
```### https://github.com/kaorun343/vue-property-decorator
[vue-property-decorator](https://github.com/kaorun343/vue-property-decorator)
```tsx
import { Vue, Component } from "vue-property-decorator";@Component({
components: {},
})
export default class About extends Vue {
render() {
return (
This is an about page
);
}
}
```### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).