91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue怎么實現日期選擇組件功能

發布時間:2022-11-03 10:00:34 來源:億速云 閱讀:131 作者:iii 欄目:開發技術

這篇文章主要講解了“vue怎么實現日期選擇組件功能”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“vue怎么實現日期選擇組件功能”吧!

目錄結構

demo 用vue-cli 的webpack-simple構建的

calendar
 |--dist build生成的目錄
 |--doc  展示圖片
 |--src
   |--assets 資源
   |--components
     |--calendar  日期組件
     |--dateScroll 滾動的子組件
   |--css
   |store  vuex目錄
     |--modules
       |--calendar  
     |--mutation   組件的一些狀態
     |--store
   |App.vue  入口
   |main.js

組件使用

組件可以傳入一個年份的范圍,startTime 和 endTime 都是數字, 默認是1900 - 2050

觸發組件 this.$store.dispatch('calendarStatus',true)

  <template>
   <div id="app">
    <p @click = "setDate">點擊設置日期</p>
     <!--顯示返回的日期-->
    <p>{{date}}</p>
     <!--組件-->
    <com-calendar :style = "calendar" :startTime = "start" :endTime="end"></com-calendar>
      <!--遮罩-->
    <div v-show = "mark" class="mark" @touchmove.stop.prevent ="" @touchstart.stop.prevent ="" @touchend.stop.prevent =""></div>

   </div>
  </template>

  <script>
   require('./css/style.scss');
  import calendar from './components/calendar';
  export default {
   name: 'app',
   data () {
    return {
     //選擇日期的開始返回,默認是1900 - 2050
      start:1950,
      end:2030
    }
   },
   components:{
    comCalendar:calendar
   },
   methods:{
    setDate:function () {
     //觸發日期組件
     this.$store.dispatch('calendarStatus',true);
    }
   },
    computed:{
     //遮罩狀態
     mark:function () {
      return this.$store.getters.markStatus
     },
     //組件狀態
     calendar:function () {
      return this.$store.getters.getCalendarStatus?{ display:'block'}:{ display:'none'};
     },
     //返回的日期
     date:function () {
      return this.$store.getters.getCalendarDate;
     }

    }

  }
  </script>

運行

# install dependencies
npm install

# serve with hot reload at localhost:8081
npm run dev

# build for production with minification
npm run build

Vue的優點

Vue具體輕量級框架、簡單易學、雙向數據綁定、組件化、數據和結構的分離、虛擬DOM、運行速度快等優勢,Vue中頁面使用的是局部刷新,不用每次跳轉頁面都要請求所有數據和dom,可以大大提升訪問速度和用戶體驗。

感謝各位的閱讀,以上就是“vue怎么實現日期選擇組件功能”的內容了,經過本文的學習后,相信大家對vue怎么實現日期選擇組件功能這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

乌兰浩特市| 巍山| 年辖:市辖区| 玉田县| 阿克苏市| 衡南县| 大宁县| 塘沽区| 社旗县| 吉林市| 宝兴县| 吴桥县| 饶平县| 昭通市| 龙胜| 汶上县| 湛江市| 红河县| 尼木县| 延边| 英超| 栾城县| 天津市| 岳普湖县| 阿克| 昂仁县| 南安市| 阳新县| 沛县| 呼和浩特市| 德惠市| 昭觉县| 津市市| 锡林郭勒盟| 体育| 芜湖县| 旬邑县| 抚顺县| 南阳市| 湄潭县| 景泰县|