1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-09 10:22:51 +03:00
This commit is contained in:
Abijeet
2017-11-15 00:01:48 +05:30
17 changed files with 6127 additions and 36 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
};