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...
Is there a way, even not official from the library, to do that? I'm building a mvc app and I really want to use this keycloak resource. I've tryied on...
**EDIT: Nop, It doesn't work, I've tested more now and have a problem to check permission because ideed it needs the user token, not just api access.** I could find...
Finally I have a solution. This was the reference that I used: https://github.com/mderriey/aspnet-core-token-renewal/blob/master/src/MvcClient/Startup.cs We still need the `"DisableHeaderPropagation": true` in the appsettings and our program.cs like this: ``` builder .Services...
Oh My Godness, I've lost a whole night on that until read the first issue. First, thanks the module creator(s), second, thank you man to write a issue about that!...