Luy Lucas
Luy Lucas
I'll need to replace jquery plugins for vue-plugins like: [vue-table](https://www.vuetable.com/), [vue-good-table](https://xaksis.github.io/vue-good-table/) or can implement yours from scratch (it's good for learning vue)
Well, I'm using with vue3. I just copy the source code from node_modules, import jquery, bootstrap-table js and css (working with webpack/vite): ``` import $ from "jquery"; window.jQuery = window.$...
Well, I did it ``` import { useRouter, useRoute } from 'vue-router' const router = useRouter() const route = useRoute() import BootstrapTable from '@/components/BootstrapTable.vue' const bsTableOptions = { url: ``...
> Seeing this image example, apparently he is trying to use to use jquery to build a table, not a vue plugin. If trying to build a vue component to...