如何打造实现日历所有月日显示功能的组件?
要实现日历中所有月日显示的功能,推荐使用以下组件:
具体使用方法如下:
立即学习“前端免费学习笔记(深入)”;
<template> <vue-material-year-calendar :value="value" @input="oninput" :weekdaysvisible="true" /> </template>
<script> import VueMaterialYearCalendar from "vue-material-year-calendar"; export default { components: { VueMaterialYearCalendar }, data() { return { value: null }; }, methods: { onInput(val) { this.value = val; }, }, }; </script>
这个组件满足所有月日显示的要求。