中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何實現基于vue2.0+vuex的日期選擇組件功能

發布時間:2021-07-07 10:51:26 來源:億速云 閱讀:135 作者:小新 欄目:web開發

這篇文章主要為大家展示了“如何實現基于vue2.0+vuex的日期選擇組件功能”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“如何實現基于vue2.0+vuex的日期選擇組件功能”這篇文章吧。

calendar vue日期選擇組件

一個選擇日期的vue組件

基于vue2.0 + vuex

原本是想找這樣的一個組件的,查看了vuex后,發現vuex的寫法還不是基于2.0的,所以就自己動手做了

demo展示&&項目中的使用

如何實現基于vue2.0+vuex的日期選擇組件功能

如何實現基于vue2.0+vuex的日期選擇組件功能

目錄結構

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

以上是“如何實現基于vue2.0+vuex的日期選擇組件功能”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

vue
AI

柘荣县| 和田市| 谢通门县| 余干县| 仙居县| 上犹县| 湖北省| 甘泉县| 厦门市| 武清区| 饶平县| 温州市| 镇康县| 河曲县| 资溪县| 佛山市| 安顺市| 正安县| 汉中市| 高陵县| 平遥县| 五台县| 石家庄市| 平原县| 固阳县| 马鞍山市| 蓬莱市| 汾阳市| 江阴市| 双江| 关岭| 北碚区| 长泰县| 高阳县| 博罗县| 五大连池市| 北安市| 岚皋县| 扬中市| 文水县| 吕梁市|