<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>猜数游戏</title>
    <script src="../js/vue.js"></script>
    <style>
        div#app{
            width: 250px;
            margin: 30px auto;
            border:1px solid #666;
            border-radius: 10px;
            padding: 10px;
        }
        
        p{
            text-align: center;
        }
    </style>
</head>
<body>
    <div id="app">
        <p>
            <input type="text" placeholder="猜数游戏">
        </p>
        <p>请猜一个介于1和100之间的整数</p>
    </div>
</body>
</html>