123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
- <title>vuetify demo</title>
- <style>
- [v-cloak] {
- display: none;
- }
- </style>
- </head>
- <body>
- <div id="app" v-cloak>
- <v-app id="inspire">
- <v-content>
- <v-container fill-height>
- <table is="v-simple-table">
- <thead>
- <tr>
- <th class="text-left">Name</th>
- <th class="text-left">Calories</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>111</td>
- <td>222</td>
- </tr>
- </tbody>
- </table>
- </v-container>
- </v-content>
- </v-app>
- </div>
- <script src="http://localhost:3080/app.js"></script>
- <script src="http://localhost:3100/app.js"></script>
- </body>
- </html>
|