Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 578 Bytes

File metadata and controls

27 lines (16 loc) · 578 Bytes

Website components

Explanation:-

  • v-model="config.VariableName" This defines the variable to be modified.

  • @change="update()" This defines the function to be run on value change

Component Examples:-

Switch

<switch-checkbox v-model="config.enabled" @change="update()">Enabled</switch-checkbox>

boolean output

Text Box

<input type="text" class="w3" v-model="config.speedThreshold" @change="update()">

Parses output to the variable type