-
start up time: the time from "the command is executed" to the time "load event is triggered in browser".
-
root HMR time: the time from "the root file is changed" to the time "that file is executed in browser".
-
leaf HMR time: the time from "the leaf file is changed" to the time "that file is executed in browser".
-
cold start: the dependency optimization cache is deleted before each run
-
hot start: the dependency optimization cache exists by each run
See this StackOverflow thread
First off, include the directive at the end of this gist.
- On your open button, make sure to use
@click.stop
to prevent the open click event from closing your modal. - On your modal, add the
v-click-outside
directive and points it at a function to call when clicked outside.