12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html lang="en" data-theme="dark">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>sample page</title>
- <link rel="stylesheet" type="text/css" href="../style/sample.css"/>
- </head>
- <style>
- [v-cloak]{
- display: none;
- }
- </style>
- <script src="../utils/sample.js" type="module"></script>
- <body>
- <h3>sample</h3>
- <h1>Hello, World!</h1>
- <p>this is a sample about <a href="#">boujeeshilry.com!</a></p>
- <div id="app"></div>
- <canvas id="canvas"></canvas>
- <hr/>
- <pre>main link : <a href="#">boujeeshilry.com!</a></pre>
-
- <h2>用户列表</h2>
- <table>
- <th>index</th><th>usename</th><th>nickname</th><th>password</th><th>description</th><th>operation</th>
- <tr v-for="(value,key,index) in books">
- <td>{{key}}</td>
- <td>{{value.usename}}</td>
- <td>{{value.nickname}}</td>
- <td>{{value.password}}</td>
- <td>{{value.description}}</td>
- </tr>
-
- </table>
- <h3>connect to tomcat</h3>
- <button @click="interface_web()">get userinfo</button>
- <br/>
- </body>
- </html>
|