| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/bitnami/htdocs/app/node_modules/vuetify-datetime-picker/ |
Upload File : |
# vuetify-datetime-picker [](https://github.com/darrenfang/vuetify-datetime-picker/blob/master/LICENSE) [](https://www.npmjs.com/package/vuetify-datetime-picker) [](https://circleci.com/gh/darrenfang/vuetify-datetime-picker) DatetimePicker component for Vuetify.js. [Online Demo](http://darrenfang.github.io/vuetify-datetime-picker/ 'Online Demo') [Demo Source Code](https://github.com/darrenfang/vuetify-datetime-picker/blob/master/src/app.vue 'Demo Source Code') ## Installation ```shell npm install --save vuetify-datetime-picker or yarn add vuetify-datetime-picker ``` ```js import Vue from 'vue' import DatetimePicker from 'vuetify-datetime-picker' // (Optional) import 'vuetify-datetime-picker/src/stylus/main.styl' Vue.use(DatetimePicker) ``` If use the `main.styl`, you should configure the `stylus-loader` in `webpack.config.js`, or just ignore this style sheet. ## Usage Once installed, it can be used in a template as simply as: ```html <v-datetime-picker label="Select Datetime" v-model="datetime"> </v-datetime-picker> ``` ## Properties | Name | Type | Default Value | Description | | ---------------- | ----------- | ------------- | ----------------------------------------------------------------------------------------------------------- | | datetime (model) | Date/String | | Time picker model. | | disabled | Boolean | false | Input is disabled. | | loading | Boolean | false | Input is loading. | | label | string | | Sets input label. | | dialogWidth | Number | 340 | The width of the dialog. | | dateFormat | string | yyyy-MM-dd | Defines the format of a date. | | timeFormat | string | HH:mm | Defines the format of a time. | | clearText | string | CLEAR | Sets the text of the clear button. | | okText | string | OK | Sets the text of the ok button. | | textFieldProps | Object | | Text fields properties. See [Vuetify Docs](https://vuetifyjs.com/en/components/text-fields 'Vuetify Docs') | | datePickerProps | Object | | Date pickers properties.See [Vuetify Docs](https://vuetifyjs.com/en/components/date-pickers 'Vuetify Docs') | | timePickerProps | Object | | Time pickers properties.See [Vuetify Docs](https://vuetifyjs.com/en/components/time-pickers 'Vuetify Docs') | ## Events | Name | Arguments | Description | | ----- | ------------------- | ----------------------- | | input | value (Date/String) | The updated bound model | ## Slots | Name | Description | | -------- | ------------------------------------------------------------------------------------------- | | dateIcon | Slot to put custom icon in the date tab. | | timeIcon | Slot to put custom icon in the time tab. | | actions | Slot to put custom buttons in the dialog. | | progress | Slot for custom progress linear (displayed when loading prop is not equal to Boolean False) |