Arsync

Results 7 issues of Arsync

Just placed in my vue.config.js and was runned. In module.exports of vue.config.js: ``` pluginOptions: { dll: { entry: [ 'vue', 'vue-i18n', 'vue-router', 'vuex', 'vuex-router-sync', //'vuetify/lib' //'vuetify/src/stylus/app.styl', '@fortawesome/fontawesome-svg-core', '@fortawesome/vue-fontawesome', '@fortawesome/free-solid-svg-icons' ],...

Example config of SSR setup: [vue-cli-ssr-example](https://github.com/eddyerburgh/vue-cli-ssr-example/blob/master/vue.config.js) and [vue-cli3-ssr-project](https://github.com/ediaos/vue-cli3-ssr-project/blob/master/vue.config.js). There is important things: ``` configureWebpack: () => ({ target: TARGET_NODE ? 'node' : 'web', node: TARGET_NODE ? undefined : false, entry:...

The 'fetch' is not exists on Model. For example, as it shown [here](https://vuex-orm.github.io/plugin-graphql/guide/fetch.html#fetching-a-single-record) in manuals: ```ts await Comment.fetch('42'); // Unsafe call of an any typed value. // or await Comment.fetch({...

Need an example of how to use dynamic modules with SSR, when store is wrapped into callback like this: ```TS import Vuex from 'vuex'; import { store } from 'quasar/wrappers';...

Within vanilla Vuex we have extension like ```TS // vuex-shims.d.ts declare module 'vuex/types' { interface Store { $api: ServiceFactory; } } ``` And access it in actions like ```TS async...

question

Fields like 'Console display name' and 'Rest client URI (required)' is filled, but legacy conversations empty. Keycloak (in docker) version 20.0.2, 21.0.2 I've missed something in keycloak configuration or docker...

Keycloak bug

Tried to insert MudStepper into MudDialog and found some css-classes missed. Suggested improvements for better style customizations: 1) add 'mud-stepper' class to outer div of MudStepper 2) add 'mud-stepper-content' class...