Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/topcoat/0.8.0/css/topcoat-desktop-dark.css">
  <title>JS Bin</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.10/vue.js"></script>
<div id="app">
  <div class="container">  
    <input type="range" min="0" max="175" step=".1" 
           id="slider" class="topcoat-range" 
           v-model="sliderRadius"
           v-on:change="log">
    <input type="number" min="0" max="500" step=".1" 
           id="range" class="topcoat-text-input" 
           v-model="radius"> 
  </div>
  <p>radius: {{radius}}</p>  
  <p>sliderRadius: {{sliderRadius}}</p>
</div>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
undavidepro
0viewers