Oleksandr Zinchenko

Results 9 comments of Oleksandr Zinchenko

possible workaround is to use WebpackShellPlugin https://stackoverflow.com/questions/36773619/webpack-execute-function-before-build-starts

Had the same issue, the following helped: ko.validation.init({ insertMessages: true, errorElementClass: 'has-error', errorMessageClass: 'help-block', decorateInputElement: true }, true);

hello @bellissi1u , when I am on 2nd page of pagination and use the following: ``` onItemsPerPage (itemsPerPageValue) { this.perPage = itemsPerPageValue Vue.nextTick(() => this.$refs.vuetable.refresh()) }, ``` table sends 2...

@manniL , thx for reply. my Nuxt config for styles is: ``` module.exports = { mode: 'universal', modules: [ ['bootstrap-vue/nuxt', { css: false }], '@nuxtjs/style-resources' ], styleResources: { scss: [...

it seems that there is a workaround that allows to 'ignore' scss themes if you want - placing them outside the assets folder. Did took me a while to came...

I was trying to write Masonry like layout with only difference - height of outer container is fixed. here is what I have: http://codepen.io/Qvatra/pen/zxRyVy hope this will help

check out the following Gist with a layout that I wrote for your LayoutController: https://gist.github.com/Qvatra/65d481ce0596e6f1b012 here is codePen example: http://codepen.io/Qvatra/pen/ogmYJW