mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-02 04:24:45 +00:00
renamed file
This commit is contained in:
parent
a7f4c9d5e9
commit
b293f61080
2 changed files with 3 additions and 3 deletions
|
|
@ -31,7 +31,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import autocompleteCommon from '../../core/utils/autocomplete-commons';
|
||||
import autocompleteCommon from '../../core/utils/autocomplete-common';
|
||||
import common from './common';
|
||||
import getClosestVueParent from '../../core/utils/getClosestVueParent';
|
||||
|
||||
|
|
|
|||
|
|
@ -44,9 +44,9 @@ export default {
|
|||
verifyProps() {
|
||||
if (!this.parentContainer) {
|
||||
return this.throwErrorDestroy('You should wrap the md-input in a md-input-container');
|
||||
} else if (!this.listIsEmpty && this.filterList) {
|
||||
} else if (this.listIsEmpty && this.filterList) {
|
||||
return this.throwErrorDestroy('You should use a `filterList` function prop with the `list` prop');
|
||||
} else if (!this.fetch) {
|
||||
} else if (!this.fetch && this.listIsEmpty) {
|
||||
return this.throwErrorDestroy('You should use a `fetch` function prop');
|
||||
}
|
||||
},
|
||||
Loading…
Reference in a new issue