Guest User

Untitled

a guest
Feb 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <p> {{SimulationParameters.parameter1}} </p>
  2.  
  3. <v-slider class="customSlider" id="param1Slider"
  4. v-model="SimulationParameters.param1"
  5. step="1"
  6. min="0"
  7. max="100">
  8. </v-slider>
  9.  
  10. step="SimulationParametersConfig.param1.step"
  11. //takes it as a string - param1 = Nan
  12.  
  13. step={{SimulationParametersConfig.param1.step"}}
  14. //failed to compile
  15.  
  16. step=SimulationParametersConfig.param1.step
  17. //not sure but doesn't work
Add Comment
Please, Sign In to add comment