第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

用vuex敲一個(gè)網(wǎng)頁(yè)計(jì)算機(jī)demo遇到unknown mutation type

用vuex敲一個(gè)網(wǎng)頁(yè)計(jì)算機(jī)demo遇到unknown mutation type

花開花落_青藤 2017-06-22 17:13:25
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>計(jì)算器</title></head><style>.contain{margin:100px 500px;width: 500px;height: 704px;border: solid 1px #ccc;}.head{position: relative;width: 500px;height: 200px;background-color:#ccc;?}.enter{position: absolute;font-size: 20px;font-weight: 800;width: 100%;top:160px;text-align: right;}.result{font-size: 30px;position: absolute;? ? text-align: right;? ? top:100px;? ? width: 100%;}.list{width: 500px;height: 600px;}.list div{font-weight: 800;font-size: 20px;line-height: 124px;text-align: center;?width: 123px;height: 124px;? ? float: left;? ? border: solid 1px #ccc;}.list div:first-child{color: red;}.list div:last-child{background-color: red;}</style><body><div id="app"><div><div><div>{{result}}</div><div>{{enter ===""?0:enter}}</div></div><div><div><!-- 鍵盤區(qū)域 --><keyboard v-for="item in keys" :value="item"></keyboard></div></div></div></div></body><script src="vue.js"></script><script src="vuex.js"></script><script src="calc_js.js"></script></html>--------------------------------------------------js部分----------------------------------------------------------------------//創(chuàng)建倉(cāng)庫(kù)storeconst store = new Vuex.Store({ state:{ result:"",//運(yùn)算結(jié)果 enter:""http://輸入的值 }, // 定義名為calculate的mutaion mutaions:{ calculate(state,value){ if(value === '='){? ? ? ? ? ? ? ?// 按鍵值為'='進(jìn)行計(jì)算? ? ? ? ? ? ? ?state.result=eval(state.enter);? ? ? ? ? ? ? ?state.enter +=value; }else if(value==='clear'){ // 按鍵值clear,清空數(shù)據(jù) state.result =state.enter="" }else{ // 輸入結(jié)果enter進(jìn)行拼接 state.enter +=value; } } }});// 定義組件Vue.component('keyboard',{ props:['value'], template:`<div @click="getKeyboardValue" :data-value="value">{{value}}</div>`, methods:{ // 點(diǎn)擊事件處理函數(shù) getKeyboardValue(event){ // 獲取當(dāng)前按鍵值 let value = event.target.dataset.value; // 通過commit提交mutaion this.$store.commit('calculate',value) } }});const app = new Vue({ el:'#app', store, data:{ keys:[? ? ? ? ? 'clear','+','-','*',? ? ? ? ? '7','8','9','/',? ? ? ? ? '4','5','6','0',? ? ? ? ? '1','2','3','=' ] }, computed:{ result(){ //通過this.$store獲取倉(cāng)庫(kù)的數(shù)據(jù)result return this.$store.state.result; }, enter(){ //通過this.$store獲取倉(cāng)庫(kù)的數(shù)據(jù)enter return this.$store.state.enter; } } });
查看完整描述

1 回答

?
慕哥1222438

TA貢獻(xiàn)3條經(jīng)驗(yàn) 獲得超44個(gè)贊

你的方法沒定義,mustation的type

查看完整回答
反對(duì) 回復(fù) 2017-06-22
  • 1 回答
  • 0 關(guān)注
  • 4358 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)