Help me solve with the problem please. I am using jquery and jquery-ui to implement drag & drop in QASAR CLI. But I ran into the fact that I cannot access the vue instance from jquery function events, since "this" no longer belongs to Vue, but refers to the selector element. Tell me how I can refer directly to the vue instance as it could be done in cdn version. There you could just give the name app = new Vue ... And then use it as app.data.variable
Quasar CLI VUE instance
186 Views Asked by dindev At
1
There are 1 best solutions below
Related Questions in VUE.JS
- jqBootstrapValidation() is not a function
- In Vue.js, change value of specific attribute for all items in a data array
- Vue.js - How to handle all elements with the same selector?
- How can I use Elixir + Vueify?
- Bind function on newly created element
- Vue.js Passing data to content scope
- Updating the DOM with change in an object (vue.js) - binding not working?
- websocket + vuejs: screen flickering, visible mustache code
- Vue.js nested v-repeat: How to access parent $index inside child?
- VueJS - trouble understanding .$set and .$add
- Difference between two similar functions, why is one working and the other not
- Display unescaped HTML in Vue.js
- Mouseover or hover vue.js
- vuejs: Trying to focus the input using v-el directive
- Vue.js component issue
Related Questions in VUE-CLI
- Using VueJs build tools with Laravel
- Is it possible to run VueJS dev server without port?
- How to add Karma+Mocha tests after initializing project using vue-cli
- use rsjx and vue-rx in vue-cli
- Call parent method from nested child in Vue
- Karma unit test Vue.js + Foundation
- How to use Visual Studio 2017 and Vue single file components
- npm ERR! code EPERM while installing vue-cli
- Vue CLI - How to have components on multiple pages (Flask)
- Installing Vue-cli issues
- Error: Redirected when going from "/pages/login" to "/dashboard" via a navigation guard
- Error with vue/cli installation on windows
- How to include all "vue" files from directory into the build without explicitly importing them
- Vue.js 3 extension breaks while using "vue-cli-service build" due to unsafe-eval
- How to correct "preload key requests" performance problem on lighthouse with vue-cli and vue.config.js
Related Questions in QUASAR-FRAMEWORK
- Vue and Vue-template-compiler version > "2.1.4" gives error in browser
- How to import external Vue components from .js file via web URL?
- Infinite loading on failed query with Vue apollo
- Quasar's clearble q-input problem with focus
- How to get my api data into select list in quasar vue js?
- How to determine which q-expansion-item is open?
- How do I use a vue.js component library when building a web component
- How to build data from my API to Apx Chart
- Cordova plugin with Capacitor and Quasar
- Hot reload issue when using quasar with laravel and sanctum
- Quasar file picker label slots for adding custom label in q-file
- Quasar Icon Genie CLI crops icons from square to rectangle
- Quasar file picker change text color of selected file name in q-file
- How to put api data value into select options for quasar framework?
- How to get the actual data for select options in quasar?
Related Questions in QUASAR
- Quasar/Pulsar lein midje build errors on linux
- JVM: is it possible to manipulate frame stack?
- VueJS 2 debounce on multiple components
- How to make modal close after validation using Vue js?
- Cannot generate .apk file while running( cordova build android ) in quasar framework
- Timer for actor in quasar
- How to change picture in Vue / Quasar in drawer component?
- Infinite loading on failed query with Vue apollo
- How to get my api data into select list in quasar vue js?
- Cordova plugin with Capacitor and Quasar
- How to get the text of the component q-toolbar-title?
- Hot reload issue when using quasar with laravel and sanctum
- How to make multiple pages in the electron application in the Quasar framework?
- Quasar Icon Genie CLI crops icons from square to rectangle
- How to put api data value into select options for quasar framework?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I believe this is more javascript question, than quasar/vue/jquery. You can easily set value of
thisby abindfunctionSame thing applies to jquery function handlers. I guess you could pass your instance instead of
obj