Outdated documentation for MdlButton
See original GitHub issueThe usage of icon property of MdlButton has been changed since this commit. In newer version the code shown in the documentation does not work correctly.
The code in documentation:
<mdl-button icon>
<i class="material-icons">star</i>
</mdl-button>
The new usage:
<mdl-button icon="star">
</mdl-button>
However, simply changing this may cause documentation works incorrectly and upgrading the VueMdl that the documentation uses may lead to other problems. Hope you could check the changes globally and update the documentation.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:10 (5 by maintainers)
Top Results From Across the Web
Outdated Documentation | How It Can Cost You | by Jacquie ...
This article by Jacquie Samuels discusses how outdated documentation can cost your brand and your company.
Read more >The Holy Grail of “Always-Up-to-Date” Documentation
When you ask someone what's wrong with your documentation, the top 3 answers will be: no one reads it, it is misleading, and...
Read more >Beyond Notes: Why It Is Time to Abandon an Outdated ... - NCBI
Electronic medical record (EMR) documentation is used for clinical, medicolegal, and billing purposes, as well as research, quality improvement, and population ...
Read more >Where to find documentation for old releases? - MathWorks
Or am I missing something? I cant find any regular Button in the Documentation Center to find the old Docs anywhere.
Read more >How to replace jQuery DatePicker previous/next buttons with MDL ...
Following jQuery's documentation, it should be doable like so: $('.datepicker-holder').datepicker({ nextText: '<button class="mdl-button mdl-js-button ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@tralves you saved me a lot of time. Thank you! 😄
Is it just me, or with Vue 2.0 you need to register the events with
@click.nativeinstead of just@click? It sort of makes sense, according to the Vue 2.0 doc.If that’s the case, I think the docs should mention this. It may save someone else some time.