add frontend frame and service logic

This commit is contained in:
2021-07-03 00:41:03 -05:00
parent 87312fbc86
commit be789ae882
49 changed files with 10019 additions and 65 deletions

View File

@ -0,0 +1,13 @@
import { del, get, post, put } from '@/services/fetch';
class {{Component}}Service {
// SYSTEM-BUILDER-service-variables
// SYSTEM-BUILDER-service-functions
}
let {{component}}Service = new {{Component}}Service();
export {
{{component}}Service,
{{Component}}Service
};