Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Temperature Converter</title>
  <script src="https://cdn.rawgit.com/vuejs/vue/dev/dist/vue.js" type="text/javascript"></script>
</head>
<body>
  <div id="temperature-converter">    
    <label class="celsius-wrap">
      <input type="number" v-model="celsius">°C
    </label>
    <span class="arrows"></span>
    <label class="fahrenheit-wrap">
      <input type="number" v-model="fahrenheit">°F
    </label>
    <span class="arrows"></span>
    <label class="kelvin-wrap">
      <input type="number" v-model="kelvin">K
    </label>
  </div>
  </body>
</html>
Output

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

Dismiss x
public
Bin info
M165437pro
0viewers