Skip to content

Commit 3232cbb

Browse files
fix(MdFile): add required v-model
1 parent 0eca578 commit 3232cbb

File tree

2 files changed

+8
-31
lines changed

2 files changed

+8
-31
lines changed

docs/app/pages/Components/File/examples/FileField.vue

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,32 @@
22
<div>
33
<md-field>
44
<label>Single</label>
5-
<md-file/>
5+
<md-file v-model="single" />
66
</md-field>
77

88
<md-field>
99
<label>Upload files</label>
10-
<md-file placeholder="A nice input placeholder"/>
10+
<md-file v-model="placeholder" placeholder="A nice input placeholder" />
1111
</md-field>
1212

1313
<md-field>
1414
<label>Disabled</label>
15-
<md-file disabled/>
15+
<md-file v-model="disabled" disabled/>
1616
</md-field>
1717

1818
<md-field>
1919
<label>Initial value</label>
20-
<md-file v-model="initial"/>
20+
<md-file v-model="initial" />
2121
</md-field>
2222

2323
<md-field>
2424
<label>Multiple</label>
25-
<md-file multiple v-model="multiple"/>
25+
<md-file v-model="multiple" multiple />
2626
</md-field>
2727

2828
<md-field>
2929
<label>Only images</label>
30-
<md-file accept="image/*" v-model="single"/>
30+
<md-file v-model="single" accept="image/*" />
3131
</md-field>
3232
</div>
3333
</template>
@@ -38,6 +38,8 @@ export default {
3838
data: () => ({
3939
initial: 'vue-material-is-awesome.jpg',
4040
single: null,
41+
placeholder: null,
42+
disabled: null,
4143
multiple: null
4244
})
4345
}

src/components/MdField/MdFile/MdFile.test.js

-25
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,3 @@ test('should render the field', async () => {
1414
expect(wrapper.hasClass('md-field')).toBe(true)
1515
expect(wrapper.text().trim()).toBe('Lorem ipsum')
1616
})
17-
18-
test('should render the file field', async () => {
19-
const wrapperWithFile = mount(MdField, {
20-
slots: {
21-
default: [MdFile]
22-
}
23-
})
24-
25-
const mdFile = wrapperWithFile.first(MdFile)
26-
27-
expect(mdFile.hasClass('md-file')).toBe(true)
28-
})
29-
30-
test('should render the input field inside the mdFile', async () => {
31-
const wrapperWithFile = mount(MdField, {
32-
slots: {
33-
default: [MdFile]
34-
}
35-
})
36-
37-
const mdFile = wrapperWithFile.first(MdFile)
38-
const mdInput = mdFile.vm.$children[0]
39-
40-
expect(mdFile.hasClass('md-file') && mdInput instanceof Object).toBe(true)
41-
})

0 commit comments

Comments
 (0)