UniInput.ts 352 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2
import '@dcloudio/uni-components/style/input.css'
import { Input } from '@dcloudio/uni-components'
fxy060608's avatar
fxy060608 已提交
3
import { UniNodeJSON } from '@dcloudio/uni-shared'
fxy060608's avatar
fxy060608 已提交
4 5 6
import { UniComponent } from './UniComponent'

export class UniInput extends UniComponent {
fxy060608's avatar
fxy060608 已提交
7 8
  constructor(id: number, nodeJson: Partial<UniNodeJSON>) {
    super(id, 'uni-input', Input, nodeJson)
fxy060608's avatar
fxy060608 已提交
9 10
  }
}