JavaScript component
Build HTML/CSS/JS, React, Vue, Angular components
What is a JavaScript Component?
You can create your Custom JS components and pass values to them from anywhere else in the application via parameters. Here is a short demo of how to do this:
Add an HTML component to your design
Add a Text Field to your design
From the Right Menu, change the parameter
Choose the correct parameter
Rename the parameter
Change the value of the HTML
Add a test value in the text field
Create a JavaScript Component
A Custom Component uses Web Component specification to integrate any JS-based component to Jet Admin – this allows you to use any Frameworks and Libraries you like as long as you create them as custom Web Components. So it can be React, Angular, or Vue. js-based components, or any other.
Create a JavaScript ComponentSet JavaScript Component Inputs
You can specify Inputs to pass data inside the Custom Component from Jet Admin if you have defined custom attributes for your Custom Component (Examples from GitHub include them already).
Set JavaScript Component InputsUse JavaScript Component Outputs
You can specify Outputs to take from your Custom Component and use their values in other Jet Admin components. For such cases, you should set Outputs inside your Custom Component by sending CustomEvent with Output name and its value in the detail field (Examples from GitHub include it already).
Use JavaScript Component OutputsLast updated