真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

利用Vue.extend怎么制作一個(gè)登錄注冊框-創(chuàng)新互聯(lián)

本篇文章為大家展示了利用Vue.extend 怎么制作一個(gè)登錄注冊框,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

創(chuàng)新互聯(lián)專注骨干網(wǎng)絡(luò)服務(wù)器租用十余年,服務(wù)更有保障!服務(wù)器租用,成都服務(wù)器托管 成都服務(wù)器租用,成都服務(wù)器托管,骨干網(wǎng)絡(luò)帶寬,享受低延遲,高速訪問。靈活、實(shí)現(xiàn)低成本的共享或公網(wǎng)數(shù)據(jù)中心高速帶寬的專屬高性能服務(wù)器。

模態(tài)框是我們UI 控件中一個(gè)很重要的組件,使用場景有很多種,我們在 Vue 組件中創(chuàng)建模態(tài)框組件而用到的一個(gè)知識(shí)點(diǎn)是利用Vue.extend 來創(chuàng)建。

文檔中的解釋是

利用Vue.extend 怎么制作一個(gè)登錄注冊框

在最近在做一個(gè)常用的類似下面的登錄/注冊 業(yè)務(wù)場景時(shí),利用Vue.extend 來改善我們的代碼,使我們代碼邏輯更清晰化。

利用Vue.extend 怎么制作一個(gè)登錄注冊框

需求:點(diǎn)擊登錄或注冊出現(xiàn)各自的模態(tài)框。

我們對(duì)于這種常見的登錄注冊業(yè)務(wù),一般都是分為Sigin.vueRegister.vue 兩個(gè)組件,然后把兩個(gè)組件寫入 App.vue 組件中,或者是layout.vue 組件中。

原來的這種使用,對(duì)于我們的整塊的登錄注冊邏輯是分散的,一些需要登錄或者是權(quán)限的邏輯,可能都需要特意去提取一個(gè)Visible 來控制我們的登錄框。

使用Vue.extend 可以達(dá)到統(tǒng)一接口,不用邏輯分散,下面的示例,僅作參考,不了解該 api 使用的可以了解下,而了解的,歡迎指導(dǎo):smiley:

組件

新建LoginModel 目錄,新建Sigin.vueRegister.vue 兩個(gè)組件



再新建index.vue 組件



創(chuàng)建子類

新建index.js ,導(dǎo)入我們的index.vue

import Vue from "vue";
import ModalCops from "./index.vue";

const LoginModal = Vue.extend(ModalCops); // 創(chuàng)建 Vue 子類

let instance;

const ModalBox = (options = {}) => {
 if (instance) {
  instance.doClose();
 }
 // 實(shí)例化
 instance = new LoginModal({
  data: {
   show: true, // 實(shí)例化后顯示
   ...options
  }
 });
 instance.$mount();
 document.body.appendChild(instance.$el); // 將模態(tài)框添加至 body
 return instance;
};

// 對(duì)應(yīng)的登錄
ModalBox.sigin = () => {
 return ModalBox({
  type: "sigin"
 });
};

ModalBox.register = () => {
 return ModalBox({
  type: "register"
 });
};

export default {
 install(Vue) {
  Vue.prototype.$loginer = ModalBox;
 }
};

創(chuàng)建完成后,我們可以在入口掛載到 Vue 實(shí)例上

// main.js
import LoginModal from "./components/LoginModal";

Vue.use(LoginModal);

在需要登錄/注冊的地方只用調(diào)用

 登錄 /  注冊
onLogin(type) {  this.$loginer({   type  }) }

效果如下

利用Vue.extend 怎么制作一個(gè)登錄注冊框

驗(yàn)證事件

我們都知道模態(tài)框需要關(guān)閉事件,而像這種業(yè)務(wù)的關(guān)閉事件必然是需要驗(yàn)證提交信息,所以我們需要加上關(guān)閉回調(diào)函數(shù)。

修改Sigin.vueRegister.vue 兩個(gè)組件,添加事件

// Sigin.vue




// Register.vue


修改index.vue 添加$emit 事件



修改index.js 文件

import Vue from "vue";
import ModalCops from "./index.vue";

const LoginModal = Vue.extend(ModalCops);

let instance;

const ModalBox = (options = {}) => {
 if (instance) {
  instance.doClose();
 }
 instance = new LoginModal({
  data: {
   show: true,
   ...options
  }
 });
 instance.ok = () => {
  return new Promise(resolve => {
   const before = options.ok ? options.ok() : false;
   if (before && before.then) {
    before.then(
     () => resolve(true),
     () => {
      console.log("reject");
     }
    );
   } else if (typeof before === "boolean" && before !== false) {
    resolve(true);
   }
  });
 };
 instance.$mount();
 document.body.appendChild(instance.$el);
 return instance;
};

ModalBox.sigin = ok => {
 return ModalBox({
  type: "sigin",
  ok
 });
};

ModalBox.register = ok => {
 return ModalBox({
  type: "register",
  ok
 });
};

ModalBox.close = () => {
 instance.doClose();
 instance.show = false;
};

export default {
 install(Vue) {
  Vue.prototype.$loginer = ModalBox;
 }
};

使用回調(diào)

onLogin(type) {
 const funcs = {
  sigin: () => {
   console.log("登錄請求");
  },
  register: () => {
   console.log("注冊請求");
  }
 };
 this.$loginer({
  type,
  ok: () => {
   return new Promise((resolve, reject) => {
    // isOk 驗(yàn)證數(shù)據(jù)是否正確
    if (this.isOk) {
     funcs[type]();
     resolve();
    } else {
     reject();
    }
   });
  }
 });
}

上述內(nèi)容就是利用Vue.extend 怎么制作一個(gè)登錄注冊框,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)頁名稱:利用Vue.extend怎么制作一個(gè)登錄注冊框-創(chuàng)新互聯(lián)
轉(zhuǎn)載注明:http://weahome.cn/article/dpiodg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部