datetimepicker.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. <script src="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.js"></script>
  10. <link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet">
  11. <script>
  12. (window.__goplaidVueComponentRegisters =
  13. window.__goplaidVueComponentRegisters || []).push(function(Vue, vueOptions) {
  14. var vuetify = new Vuetify({
  15. icons: {
  16. iconfont: 'md', // 'mdi' || 'mdiSvg' || 'md' || 'fa' || 'fa4'
  17. },
  18. theme: {
  19. themes: {
  20. light: {
  21. primary: "#673ab7",
  22. secondary: "#009688",
  23. accent: "#ff5722",
  24. error: "#f44336",
  25. warning: "#ff9800",
  26. info: "#8bc34a",
  27. success: "#4caf50"
  28. },
  29. },
  30. },
  31. });
  32. Vue.use(Vuetify);
  33. vueOptions.vuetify = vuetify;
  34. });
  35. </script>
  36. <title>vuetify demo</title>
  37. </head>
  38. <body>
  39. <script>
  40. window.__serverSideData__ = {
  41. }
  42. </script>
  43. <div id="app">
  44. <v-app>
  45. <v-content>
  46. <v-container>
  47. <vx-datetimepicker label="ScheduledStartAt" value="2006-01-02 15:04" v-field-name='"ScheduledStartAt"'> </vx-datetimepicker>
  48. <button @click='$plaid().event($event).eventFunc("a").go()'>SEND</button>
  49. </v-container>
  50. </v-content>
  51. </v-app>
  52. </div>
  53. <script src="http://localhost:3080/js/chunk-vendors.js"></script>
  54. <script src="http://localhost:3080/js/app.js"></script>
  55. <script src="http://localhost:3100/js/chunk-vendors.js"></script>
  56. <script src="http://localhost:3100/js/app.js"></script>
  57. </body>
  58. </html>