1
0
mirror of synced 2025-01-31 23:01:39 +03:00

Adds support for 'text' classification

This commit is contained in:
Justin Schroeder 2018-02-26 22:31:59 -05:00
parent 7751d27f80
commit f12774532a
2 changed files with 2 additions and 1 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@ -171,6 +171,7 @@ export default {
}, },
computed: { computed: {
classification () { classification () {
if (this.isTextInput) return 'text'
if (this.isBoxInput) return 'box' if (this.isBoxInput) return 'box'
if (this.isButtonInput) return 'button' if (this.isButtonInput) return 'button'
if (this.isSelectInput) return 'select' if (this.isSelectInput) return 'select'