0👍
As Vue is using a virtual DOM internally and jQuery is working on the actual DOM in the browser they won’t play nice together. That said, you can use jQuery and Vue on the same website as long as you don’t modify the DOM elements Vue has ownership over with jQuery and jQuery does not rely on DOM elements that belong to Vue components. There are good Vue libraries to help you, especially regarding validation there is vee-validate
- [Vuejs]-Nuxt build can't resolve empty tailwind css variables (ring)
- [Vuejs]-Rethrowing an error causes vue warning in jest test
Source:stackexchange.com