We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I get this error now after installing Vuse; Cannot set property 'isEditing' of undefined.
Cannot set property 'isEditing' of undefined
var Vuse = function Vuse (options) { this.isEditing = true; this.isSorting = false; this.isRendered = false; this.title = options.title; this.intro = options.intro; this.sections = options.sections; this.columnsPrefix = options.columnsPrefix; this.themes = options.themes; this.components = {}; this.assets = { css: options.css || 'dist/css/app.css' }; this.installPlugins(); };
I installed Vuse only in the component I need it in. Below my App.vue
<template> <div> <b-builder @saved="onSave"></b-builder> </div> </template> <script> import builder from 'vuse'; export default { components: { widget, 'b-builder': builder, }, methods: { onSave( vuse ) { console.log('on Save'); }, } } </script>
The text was updated successfully, but these errors were encountered:
8c1dd81
Merge pull request #19 from baianat/fix-16
65f9767
fix: onSave handler in demo project closes #16
No branches or pull requests
Hi,
I get this error now after installing Vuse;
Cannot set property 'isEditing' of undefined
.I installed Vuse only in the component I need it in. Below my App.vue
The text was updated successfully, but these errors were encountered: