Vue component decorator with typescript
npm install vue-component-decorator @Component
export class TestComponent extends VueComponent<{ id: string, className?: string }> {
@Props() props = { // 自定義標籤屬性之默認值
id: '',
className: ''
}
public render(h: CreateElement): any {
return (