Fixed vue component error

This commit is contained in:
Dan Brown 2017-11-11 17:10:15 +00:00
parent d29b177c84
commit 08e58bab79
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9
2 changed files with 2 additions and 6 deletions

View File

@ -125,6 +125,4 @@ const methods = {
};
const computed = [];
module.exports = {template, data, props, methods, computed};
module.exports = {template, data, props, methods};

View File

@ -9,8 +9,6 @@ let data = {
const components = {draggable, autosuggest};
const directives = {};
let computed = {};
let methods = {
addEmptyTag() {
@ -64,5 +62,5 @@ function mounted() {
}
module.exports = {
data, computed, methods, mounted, components, directives
data, methods, mounted, components, directives
};