We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<template> <div> <md-chips v-model="chips" md-placeholder="Add chip..."> <template slot="md-chip" slot-scope="{ chip }"> {{ chip.name }} </template> </md-chips> </div> </template> <script> export default { data () { return { chips: [ {id: 'asdfghjkl', name: 'foo'}, {id: 'lkjhgfdsa', name: 'bar'} ] } } } </script>
Mac OSX 10.13.6 Chrome 75 Vue 2.5.2 Vue-material: 1.0.0-beta-11
display chips without warning
Warn in dev console. Chips display correctly
vue.esm.js?efeb:628 [Vue warn]: Avoid using non-primitive value as key, use string/number value instead.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
Which browser?
Mac OSX 10.13.6
Chrome 75
Vue 2.5.2
Vue-material: 1.0.0-beta-11
What is expected?
display chips without warning
What is actually happening?
Warn in dev console. Chips display correctly
The text was updated successfully, but these errors were encountered: