File tree
Expand file treeCollapse file tree2 files changed
+20
-0
lines changed Expand file treeCollapse file tree2 files changed
+20
-0
lines changed Original file line number | Diff line number | Diff line change |
---|
|
7 | 7 | "build": "vue-cli-service build",
|
8 | 8 | "lint": "vue-cli-service lint",
|
9 | 9 | "test:unit": "vue-cli-service test:unit"
|
| 10 | +"vuetype": "vuetype src/components", |
| 11 | +"vuetype:w": "vuetype -w src/components" |
10 | 12 | },
|
11 | 13 | "dependencies": {
|
12 | 14 | "vue": "^2.5.16",
|
|
27 | 29 | "ts-jest": "^23.0.0",
|
28 | 30 | "typescript": "^3.0.0",
|
29 | 31 | "vue-template-compiler": "^2.5.16"
|
| 32 | +"vuetype": "^0.3.2" |
30 | 33 | }
|
31 | 34 | }
|
Original file line number | Diff line number | Diff line change |
---|
|
| 1 | +import { Vue } from 'vue-property-decorator'; |
| 2 | +export default class HelloVue extends Vue { |
| 3 | +/** props */ |
| 4 | +private val; |
| 5 | +/** emit */ |
| 6 | +clickButton(val: string): void; |
| 7 | +/** data */ |
| 8 | +value: string; |
| 9 | +inputValue: string; |
| 10 | +/** lifecylce hook */ |
| 11 | +mounted(): void; |
| 12 | +/** computed */ |
| 13 | +readonly isDisabled: boolean; |
| 14 | +/** method */ |
| 15 | +handleInput($event: any): void; |
| 16 | +handleClick(): void; |
| 17 | +} |
You can’t perform that action at this time.
0 commit comments