-
Updated
Oct 20, 2020 - JavaScript
npm-module
Here are 852 public repositories matching this topic...
-
Updated
Nov 23, 2020 - Ruby
-
Updated
Oct 3, 2020 - JavaScript
-
Updated
Nov 4, 2020 - JavaScript
-
Updated
Mar 23, 2018 - JavaScript
-
Updated
Nov 20, 2020 - JavaScript
-
Updated
Nov 28, 2020 - TypeScript
-
Updated
Oct 27, 2020 - JavaScript
-
Updated
Oct 27, 2020 - JavaScript
-
Updated
Oct 19, 2020 - JavaScript
-
Updated
Mar 5, 2019 - JavaScript
-
Updated
Apr 28, 2017 - JavaScript
as of tap 11 there is a feature for testing with snapshots. It seems to me like there are couple places in our test suite where we could move to this pattern to this technique.
This is a great place for someone to hack on if they wanted to get started in this repo
-
Updated
Jul 14, 2020 - JavaScript
-
Updated
Nov 1, 2020 - JavaScript
-
Updated
Oct 2, 2020 - JavaScript
-
Updated
Nov 27, 2020 - TypeScript
-
Updated
Oct 22, 2020 - JavaScript
-
Updated
Nov 14, 2020 - TypeScript
-
Updated
Nov 12, 2020 - JavaScript
-
Updated
Aug 31, 2020 - JavaScript
-
Updated
Jun 16, 2020 - TypeScript
-
Updated
Jul 20, 2020 - JavaScript
-
Updated
Sep 19, 2020 - JavaScript
Backstory
There's a need to allow users to specify what service is exposed by this plugin to allow for other icons in the Home app etc. (see #122). For historical reasons, it has always been a simple switch - but it could've been anything that represents an on or off state and allows for switching between the states (such as a lamp, a speaker or a TV).
Issue
Implement a way to make th
-
Updated
Jan 10, 2020 - JavaScript
-
Updated
Aug 29, 2019 - JavaScript
-
Updated
Sep 11, 2020 - TypeScript
-
Updated
Apr 10, 2020 - TypeScript
Improve this page
Add a description, image, and links to the npm-module topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the npm-module topic, visit your repo's landing page and select "manage topics."
Please describe what the rule should do:
Since Vue v2.1.0,
Vue.nextTick
andvm.$nextTick
return a Promise if no callback is provided. So both of the following are valid:Vue.nextTick(callback)
Vue.nextTick().then()
/await Vue.nextTick()
Or inside components:
this.$nextTick(callback)