component.vue 388 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div>
  3. <el-button>Test</el-button>
  4. <el-date-picker v-model="abc" type="daterange" format="yyyy-MM" @change="eee"></el-date-picker>
  5. </div>
  6. </template>
  7. <style scoped>
  8. </style>
  9. <script type="text/babel">
  10. export default {
  11. methods: {
  12. eee(a) {
  13. console.log(a);
  14. }
  15. },
  16. data() {
  17. return {
  18. abc: ''
  19. };
  20. }
  21. };
  22. </script>