Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
  </head>
  <body>
    <div id="app">
      <input :id="id" :min="min" :pattern="pattern"/>
    </div>
    <script src="https://unpkg.com/vue@next"></script>
    <script>
      const { ref, reactive, toRefs, createApp, h } = Vue;
      let app = createApp({
        data() {
          return {
            id: undefined,
            min: undefined,
            pattern: undefined
          };
        }
      });
      app.mount("#app");
    </script>
  </body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers