<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vue的方法_侠课岛(9xkd.com)</title> <script src="https://unpkg.com/vue@next"></script> <script src="https://cdn.jsdelivr.net/npm/axios@0.12.0/dist/axios.min.js"></script> </head> <body> <div id="date-picker" class="demo"> <date-picker @change="showChange"></date-picker> </div> <script> const app = Vue.createApp({ methods: { showChange(event) { console.log(event.target.value) // 将记录所选选项的值 } } }) .mount('#date-picker') </script> <style> .demo { font-family: sans-serif; border: 1px solid #eee; border-radius: 2px; padding: 20px 30px; margin-top: 1em; margin-bottom: 40px; user-select: none; overflow-x: auto; } </style> </body> </html>