這段時間一直在學(xué)習(xí)前端技術(shù)來完成自己的小項目。在js方面就使用了Vue框架。由于在項目里想實現(xiàn)一個新建地址的PopupWindow效果,便想到可以使用Vue的一些特性來實現(xiàn)。
用到的Vue特性:組件(Component),props傳值,slot內(nèi)容插入,transitions過渡動畫,x-templete模板。
直接上代碼(完整代碼可在鏈接中下載popupwindow):
html代碼(無樣式):
<div id="address-choose"> <div> <button @click="showOneBtnWindow()">顯示</button> </div> <new-address-window v-show="isShowEditWindow" @close="removeEditWindow()" :addressregion="addressRegion"> <!--使用插槽顯示不同的title--> <p slot="edit-window-title"> {{editTitle}} </p> <div slot="popup-btn-container"> <button>保存</button> <button>刪除</button> </div> </new-address-window> </div> <!--新建地址popupwindow模板--> <script type="text/x-template" id="popup-window-address-new"> <transition name="popup-window-transition"> <div> <slot name="edit-window-title"> <p>新建收貨地址</p> </slot> </div> <div> <p>收貨人</p> <input type="text" :value="addressregion.name"/> </div> <div> <p>選擇地區(qū)</p> <ul> <li>{{addressregion.province}}</li> <li>{{addressregion.city}}</li> <li>{{addressregion.region}}</li> </ul> </div> <div> <p>聯(lián)系電話</p> <input type="text" placeholder="手機(jī)號"/> </div> <div> <p>詳細(xì)地址</p> <input type="text" placeholder="如街道、樓層、門牌號等"/> </div> <div> <p>郵政編碼</p> <input type="text" placeholder="郵政編碼(選填)"/> </div> <div> <slot name="popup-btn-container"> <button class="btn btn-success">保存</button> <button class="btn btn-danger">刪除</button> </slot> </div> </div> </transition> </script>
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
當(dāng)前名稱:Vue實現(xiàn)PopupWindow組件詳解-創(chuàng)新互聯(lián)
本文URL:http://muchs.cn/article36/dgcspg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、動態(tài)網(wǎng)站、用戶體驗、移動網(wǎng)站建設(shè)、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容