Releases: apertureless/vue-breakpoints
Releases · apertureless/vue-breakpoints
💎 Release new version 1.1.0
Biggest change now is, that the surrounding divs which were produced by the <hideAt/>
and <showAt/>
components are removed now. This leads to cleaner output. If you pass your components or markup into the slot.
🚨 However! This has a downside! You can now only pass 1 root tag into the components. Which means:
✅Valid
<hide-at>
<h1>Hello World</h1>
</hide-at>
<hide-at>
<section>
<h1>Welcome!</h1>
<p>Have fun with vue-breakpoints!</p>
</section>
</hide-at>
🚫Invalid
<hide-at>
<h1>Hello World</h1>
<p>This is invalid because of multiple root nodes :c</p>
</hide-at>
Features
💎 Release new version 1.0.0
v1.0.0
💎 Release new version 0.2.0
Fix entry names
💎 Release new version 0.1.0
Intial release
Heavily inspired by Airbnb react-show-at and react-hide-at components