Additional TS
When creating a new UI component with a template you should use Vue.js. The component UI logics is described in .vue file in the component folder (i.e. src/components/example-button/UI/ExampleButton.vue in the template) and for convenience sake, there are modules that you just import in the .vue code.
These modules are in TypeScript. Learn How to make a Vue.js app in TypeScript.
If you are not TypeScript, please, explore the modules files below.
shared
decorators
parse-json-prop.ts
enums
Enums allow you to define a set of named constants.
message-type.enum.ts
helpers
json-prop.ts - an object for the input string.
parse-json.ts - a function that converts a JSON object to JS object.
parse-prop.ts
models
message-model.ts - f
widget-config.model.ts - file
widget-event.model.ts - file
typings
_tsyb.d.ts -
vue-class-component.ts - file
vue-property-decorator.ts - file
Last updated