App下載

詞條

大約有 700 項(xiàng)符合查詢(xún)結(jié)果 ,庫(kù)內(nèi)數(shù)據(jù)總量為 78,409 項(xiàng)。(搜索耗時(shí):0.0082秒)

451.Vant TreeSelect 分類(lèi)選擇

引入import Vue from 'vue'; import { TreeSelect } from 'vant'; Vue.use(TreeSelect); 代碼演示單選模式item為分類(lèi)顯示所需的數(shù)據(jù),數(shù)據(jù)格式見(jiàn)下方示例。main-active-index表示左側(cè)高亮選項(xiàng)的索引,active-id表示右側(cè)高亮選項(xiàng)的 id<van-tree-select :items="item...

http://m.o2fo.com/vantlesson/vantlesson-1qp935wj.html

452.Vant3 ActionSheet 動(dòng)作面板

...件,更多注冊(cè)方式請(qǐng)參考組件注冊(cè)。import { createApp } from 'vue'; import { ActionSheet } from 'vant'; const app = createApp(); app.use(ActionSheet); 代碼演示 基礎(chǔ)用法 動(dòng)作面板通過(guò) actions 屬性來(lái)定義選項(xiàng),actions 屬性是一個(gè)由對(duì)象構(gòu)成的數(shù)組,數(shù)組中...

http://m.o2fo.com/vant3/actionsheet.html

453.Vant4 List 列表

...件,更多注冊(cè)方式請(qǐng)參考組件注冊(cè)。import { createApp } from 'vue'; import { List } from 'vant'; const app = createApp(); app.use(List); 代碼演示 基礎(chǔ)用法 List 組件通過(guò) ?loading? 和 ?finished? 兩個(gè)變量控制加載狀態(tài),當(dāng)組件滾動(dòng)到底部時(shí),會(huì)觸發(fā) ...

http://m.o2fo.com/pcauz/pcauz-xfan3qhm.html

454.Vant4 Tab 標(biāo)簽頁(yè)

...件,更多注冊(cè)方式請(qǐng)參考組件注冊(cè)。import { createApp } from 'vue'; import { Tab, Tabs } from 'vant'; const app = createApp(); app.use(Tab); app.use(Tabs); 代碼演示 基礎(chǔ)用法 通過(guò) ?v-model:active? 綁定當(dāng)前激活標(biāo)簽對(duì)應(yīng)的索引值,默認(rèn)情況下啟用第一個(gè)...

http://m.o2fo.com/pcauz/pcauz-ycno3qi2.html

455.Vant4 ActionSheet 動(dòng)作面板

...件,更多注冊(cè)方式請(qǐng)參考組件注冊(cè)。import { createApp } from 'vue'; import { ActionSheet } from 'vant'; const app = createApp(); app.use(ActionSheet); 代碼演示 基礎(chǔ)用法 動(dòng)作面板通過(guò) ?actions? 屬性來(lái)定義選項(xiàng),?actions? 屬性是一個(gè)由對(duì)象構(gòu)成的數(shù)組...

http://m.o2fo.com/pcauz/pcauz-9unx3qh4.html

456.uni-app 條件編譯

...沒(méi)有交集)%PLATFORM% 可取值如下:值平臺(tái)APP-PLUSAppAPP-PLUS-NVUEApp nvueH5H5MP-WEIXIN微信小程序MP-ALIPAY支付寶小程序MP-BAIDU百度小程序MP-TOUTIAO字節(jié)跳動(dòng)小程序MP-QQQQ小程序MP微信小程序/支付寶小程序/百度小程序/字節(jié)跳動(dòng)小程序/QQ小程序支...

http://m.o2fo.com/uni_app/uni_app-x3b6370q.html

457.Vant Search 搜索

引入import Vue from 'vue'; import { Search } from 'vant'; Vue.use(Search); 代碼演示基礎(chǔ)用法v-model 用于控制搜索框中的文字,background 可以自定義搜索框外部背景色<van-search v-model="value" placeholder="請(qǐng)輸入搜索關(guān)鍵詞" /> 事件監(jiān)聽(tīng)Search 組件提...

http://m.o2fo.com/vantlesson/vantlesson-v7sd35vg.html

458.Vant Tab 標(biāo)簽頁(yè)

引入import Vue from 'vue'; import { Tab, Tabs } from 'vant'; Vue.use(Tab); Vue.use(Tabs); 代碼演示 基礎(chǔ)用法 通過(guò)v-model綁定當(dāng)前激活標(biāo)簽對(duì)應(yīng)的索引值,默認(rèn)情況下啟用第一個(gè)標(biāo)簽<van-tabs v-model="active"> <van-tab title="標(biāo)簽 1">內(nèi)容 1</van-tab&g...

http://m.o2fo.com/vantlesson/vantlesson-5lf735wh.html

459.Vant NumberKeyboard 數(shù)字鍵盤(pán)

...與密碼輸入框或自定義的輸入框組件配合使用引入import Vue from 'vue'; import { NumberKeyboard } from 'vant'; Vue.use(NumberKeyboard); 代碼演示默認(rèn)樣式<van-button @touchstart.stop="show = true"> 彈出默認(rèn)鍵盤(pán) </van-button> <van-number-keyboard :show="sho...

http://m.o2fo.com/vantlesson/vantlesson-yzhl35vb.html

460.Vant4 進(jìn)階用法

... Vant 組件。import { Button } from 'vant'; import { createApp } from 'vue'; const app = createApp(); // 方式一. 通過(guò) app.use 注冊(cè) // 注冊(cè)完成后,在模板中通過(guò) <van-button> 或 <VanButton> 標(biāo)簽來(lái)使用按鈕組件 app.use(Button); // 方式二. 通過(guò) app.component...

http://m.o2fo.com/pcauz/pcauz-tbch3qfz.html

抱歉,暫時(shí)沒(méi)有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

451.Vant TreeSelect 分類(lèi)選擇

引入import Vue from 'vue'; import { TreeSelect } from 'vant'; Vue.use(TreeSelect); 代碼演示單選模式item為分類(lèi)顯示所需的數(shù)據(jù),數(shù)據(jù)格式見(jiàn)下方示例。main-active-index表示左側(cè)高亮選項(xiàng)的索引,active-id表示右側(cè)高亮選項(xiàng)的 id<van-tree-select :items="item...

http://m.o2fo.com/vantlesson/vantlesson-1qp935wj.html

452.Vant3 ActionSheet 動(dòng)作面板

...件,更多注冊(cè)方式請(qǐng)參考組件注冊(cè)。import { createApp } from 'vue'; import { ActionSheet } from 'vant'; const app = createApp(); app.use(ActionSheet); 代碼演示 基礎(chǔ)用法 動(dòng)作面板通過(guò) actions 屬性來(lái)定義選項(xiàng),actions 屬性是一個(gè)由對(duì)象構(gòu)成的數(shù)組,數(shù)組中...

http://m.o2fo.com/vant3/actionsheet.html

453.Vant4 List 列表

...件,更多注冊(cè)方式請(qǐng)參考組件注冊(cè)。import { createApp } from 'vue'; import { List } from 'vant'; const app = createApp(); app.use(List); 代碼演示 基礎(chǔ)用法 List 組件通過(guò) ?loading? 和 ?finished? 兩個(gè)變量控制加載狀態(tài),當(dāng)組件滾動(dòng)到底部時(shí),會(huì)觸發(fā) ...

http://m.o2fo.com/pcauz/pcauz-xfan3qhm.html

454.Vant4 Tab 標(biāo)簽頁(yè)

...件,更多注冊(cè)方式請(qǐng)參考組件注冊(cè)。import { createApp } from 'vue'; import { Tab, Tabs } from 'vant'; const app = createApp(); app.use(Tab); app.use(Tabs); 代碼演示 基礎(chǔ)用法 通過(guò) ?v-model:active? 綁定當(dāng)前激活標(biāo)簽對(duì)應(yīng)的索引值,默認(rèn)情況下啟用第一個(gè)...

http://m.o2fo.com/pcauz/pcauz-ycno3qi2.html

455.Vant4 ActionSheet 動(dòng)作面板

...件,更多注冊(cè)方式請(qǐng)參考組件注冊(cè)。import { createApp } from 'vue'; import { ActionSheet } from 'vant'; const app = createApp(); app.use(ActionSheet); 代碼演示 基礎(chǔ)用法 動(dòng)作面板通過(guò) ?actions? 屬性來(lái)定義選項(xiàng),?actions? 屬性是一個(gè)由對(duì)象構(gòu)成的數(shù)組...

http://m.o2fo.com/pcauz/pcauz-9unx3qh4.html

456.uni-app 條件編譯

...沒(méi)有交集)%PLATFORM% 可取值如下:值平臺(tái)APP-PLUSAppAPP-PLUS-NVUEApp nvueH5H5MP-WEIXIN微信小程序MP-ALIPAY支付寶小程序MP-BAIDU百度小程序MP-TOUTIAO字節(jié)跳動(dòng)小程序MP-QQQQ小程序MP微信小程序/支付寶小程序/百度小程序/字節(jié)跳動(dòng)小程序/QQ小程序支...

http://m.o2fo.com/uni_app/uni_app-x3b6370q.html

457.Vant Search 搜索

引入import Vue from 'vue'; import { Search } from 'vant'; Vue.use(Search); 代碼演示基礎(chǔ)用法v-model 用于控制搜索框中的文字,background 可以自定義搜索框外部背景色<van-search v-model="value" placeholder="請(qǐng)輸入搜索關(guān)鍵詞" /> 事件監(jiān)聽(tīng)Search 組件提...

http://m.o2fo.com/vantlesson/vantlesson-v7sd35vg.html

458.Vant Tab 標(biāo)簽頁(yè)

引入import Vue from 'vue'; import { Tab, Tabs } from 'vant'; Vue.use(Tab); Vue.use(Tabs); 代碼演示 基礎(chǔ)用法 通過(guò)v-model綁定當(dāng)前激活標(biāo)簽對(duì)應(yīng)的索引值,默認(rèn)情況下啟用第一個(gè)標(biāo)簽<van-tabs v-model="active"> <van-tab title="標(biāo)簽 1">內(nèi)容 1</van-tab&g...

http://m.o2fo.com/vantlesson/vantlesson-5lf735wh.html

459.Vant NumberKeyboard 數(shù)字鍵盤(pán)

...與密碼輸入框或自定義的輸入框組件配合使用引入import Vue from 'vue'; import { NumberKeyboard } from 'vant'; Vue.use(NumberKeyboard); 代碼演示默認(rèn)樣式<van-button @touchstart.stop="show = true"> 彈出默認(rèn)鍵盤(pán) </van-button> <van-number-keyboard :show="sho...

http://m.o2fo.com/vantlesson/vantlesson-yzhl35vb.html

460.Vant4 進(jìn)階用法

... Vant 組件。import { Button } from 'vant'; import { createApp } from 'vue'; const app = createApp(); // 方式一. 通過(guò) app.use 注冊(cè) // 注冊(cè)完成后,在模板中通過(guò) <van-button> 或 <VanButton> 標(biāo)簽來(lái)使用按鈕組件 app.use(Button); // 方式二. 通過(guò) app.component...

http://m.o2fo.com/pcauz/pcauz-tbch3qfz.html

抱歉,暫時(shí)沒(méi)有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門(mén)課程