How to use the quasar-framework.Events.$on function in quasar-framework

To help you get started, we’ve selected a few quasar-framework examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github phpzm / quasar-boilerplate / src / themes / phpzm / components / transition / AppTransitionSlide.vue View on Github external
created () {
      Events.$on('app.route.update', this.updateTransition)
      Events.$on('app.route.before', (to, path) => {
        this.$refs.wrapper.scrollTop = 0
      })
    },
    destroyed () {
github phpzm / quasar-boilerplate / src / themes / phpzm / components / transition / AppTransitionSlide.vue View on Github external
created () {
      Events.$on('app.route.update', this.updateTransition)
      Events.$on('app.route.before', (to, path) => {
        this.$refs.wrapper.scrollTop = 0
      })
    },
    destroyed () {
github phpzm / quasar-boilerplate / src / themes / phpzm / components / breadcrumb / AppBreadcrumb.vue View on Github external
created () {
      Events.$on('app.route.update', this.updateBreadcrumb)
    },
    mounted () {