simple-table.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet">
  7. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  8. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  9. <title>vuetify demo</title>
  10. <style>
  11. [v-cloak] {
  12. display: none;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="app" v-cloak>
  18. <v-app id="inspire">
  19. <v-content>
  20. <v-container fill-height>
  21. <table is="v-simple-table">
  22. <thead>
  23. <tr>
  24. <th class="text-left">Name</th>
  25. <th class="text-left">Calories</th>
  26. </tr>
  27. </thead>
  28. <tbody>
  29. <tr>
  30. <td>111</td>
  31. <td>222</td>
  32. </tr>
  33. </tbody>
  34. </table>
  35. </v-container>
  36. </v-content>
  37. </v-app>
  38. </div>
  39. <script src="http://localhost:3080/app.js"></script>
  40. <script src="http://localhost:3100/app.js"></script>
  41. </body>
  42. </html>