欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vue如何實(shí)現(xiàn)簡易的彈出框

 更新時(shí)間:2022年04月22日 10:03:13   作者:zqian1994  
這篇文章主要介紹了vue如何實(shí)現(xiàn)簡易的彈出框,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教

vue實(shí)現(xiàn)彈出框

說明:點(diǎn)擊查詢彈出模態(tài),單擊表格選中,點(diǎn)擊模態(tài)外取消模態(tài)顯示效果。

如圖:

1.Template

?<!-- 模態(tài) - 選擇人員 -->
? ? <div class="model" v-show="isShowMultiple" @click="setMaskShow($event)">
? ? ? <div class="modelFixed" ref="child">
? ? ? ??? ??? ?此處為內(nèi)容區(qū)
? ? ? </div>
? ? </div>

2.script => data 中定義

?/********* ?模態(tài)-選擇人員********/
? ? ? ? isShowMultiple: false

3.script => methods 中定義關(guān)閉方法

?setMaskShow(e) {
? ? ? ? if (!this.$refs.child.contains(e.target)) {
? ? ? ? ? this.isShowMultiple = false;
? ? ? ? }
? ? ? },

4.樣式

.model {
? width: 100%;
? height: 100%;
? position: fixed;
? top: 0;
? left: 0;
? z-index: 999;
}
.modelFixed {
? position: absolute;
? top: 120px;
? left: 10px;
? padding: 5px;
? background: #ffffff;
? box-shadow: 3px 2px 5px #7777;
}

vue實(shí)現(xiàn)彈窗選擇

1.創(chuàng)建一個(gè)ImproveResume.vue

<template>
? <div class="release-post">
? ? <div class="header">
? ? ? <img
? ? ? ? class="header_left"
? ? ? ? src="./images/left_header.png"
? ? ? ? alt=""
? ? ? ? @click="clickGoBack"
? ? ? />
? ? ? <p class="header_title">完善簡歷</p>
? ? </div>
? ? <div class="resume_main">
? ? ? <div class="resume_content">
? ? ? ? <van-form>
? ? ? ? ? <div class="table_list">
? ? ? ? ? ? <p class="name_title">期望薪資</p>
? ? ? ? ? ? <van-field
? ? ? ? ? ? ? class="calendar"
? ? ? ? ? ? ? v-model="onlineForm.salary"
? ? ? ? ? ? ? :value="onlineForm.salary"
? ? ? ? ? ? ? placeholder="請(qǐng)選擇"
? ? ? ? ? ? ? @click="clickPicker(1)"
? ? ? ? ? ? ? :class="{ borderStyle: salaryChange }"
? ? ? ? ? ? ? :disabled="true"
? ? ? ? ? ? />
? ? ? ? ? </div>
? ? ? ? ? <div class="table_list">
? ? ? ? ? ? <p class="name_title">最高學(xué)歷</p>
? ? ? ? ? ? <van-field
? ? ? ? ? ? ? :style="{ color: '#323233' }"
? ? ? ? ? ? ? class="calendar"
? ? ? ? ? ? ? v-model="onlineForm.education"
? ? ? ? ? ? ? :value="onlineForm.education"
? ? ? ? ? ? ? placeholder="請(qǐng)選擇"
? ? ? ? ? ? ? @click="clickPicker(2)"
? ? ? ? ? ? ? :class="{ borderStyle: educationChange }"
? ? ? ? ? ? ? :disabled="true"
? ? ? ? ? ? />
? ? ? ? ? </div>
? ? ? ? ? <div class="table_list">
? ? ? ? ? ? <p class="name_title">工作年限</p>
? ? ? ? ? ? <van-field
? ? ? ? ? ? ? class="calendar"
? ? ? ? ? ? ? v-model="onlineForm.workYears"
? ? ? ? ? ? ? :value="onlineForm.workYears"
? ? ? ? ? ? ? placeholder="請(qǐng)選擇"
? ? ? ? ? ? ? @click="clickPicker(3)"
? ? ? ? ? ? ? :class="{ borderStyle: workYearsChange }"
? ? ? ? ? ? ? :disabled="true"
? ? ? ? ? ? />
? ? ? ? ? </div>
? ? ? ? </van-form>
?
? ? ? ? <!-- 薪資范圍 -->
? ? ? ? <van-popup v-model="showPickerPopup" position="bottom" round>
? ? ? ? ? <div>
? ? ? ? ? ? <div class="resume_picker">
? ? ? ? ? ? ? <div
? ? ? ? ? ? ? ? @click.stop="clickPicker(1)"
? ? ? ? ? ? ? ? :class="selectIndex == 1 ? 'select_title' : 'not_title'"
? ? ? ? ? ? ? >
? ? ? ? ? ? ? ? <p :class="selectIndex == 1 ? 'select_text' : 'not_text'">
? ? ? ? ? ? ? ? ? 期望薪資
? ? ? ? ? ? ? ? </p>
? ? ? ? ? ? ? ? <p :class="selectIndex == 1 ? 'select_data' : 'not_data'">
? ? ? ? ? ? ? ? ? {{ onlineForm.salary ? onlineForm.salary : "請(qǐng)選擇" }}
? ? ? ? ? ? ? ? </p>
? ? ? ? ? ? ? </div>
? ? ? ? ? ? ? <div
? ? ? ? ? ? ? ? @click.stop="clickPicker(2)"
? ? ? ? ? ? ? ? :class="selectIndex == 2 ? 'select_title' : 'not_title'"
? ? ? ? ? ? ? >
? ? ? ? ? ? ? ? <p :class="selectIndex == 2 ? 'select_text' : 'not_text'">
? ? ? ? ? ? ? ? ? 選擇學(xué)歷
? ? ? ? ? ? ? ? </p>
? ? ? ? ? ? ? ? <p :class="selectIndex == 2 ? 'select_data' : 'not_data'">
? ? ? ? ? ? ? ? ? {{ onlineForm.education ? onlineForm.education : "請(qǐng)選擇" }}
? ? ? ? ? ? ? ? </p>
? ? ? ? ? ? ? </div>
? ? ? ? ? ? ? <div
? ? ? ? ? ? ? ? @click.stop="clickPicker(3)"
? ? ? ? ? ? ? ? :class="selectIndex == 3 ? 'select_title' : 'not_title'"
? ? ? ? ? ? ? >
? ? ? ? ? ? ? ? <p :class="selectIndex == 3 ? 'select_text' : 'not_text'">
? ? ? ? ? ? ? ? ? 工作年限
? ? ? ? ? ? ? ? </p>
? ? ? ? ? ? ? ? <p :class="selectIndex == 3 ? 'select_data' : 'not_data'">
? ? ? ? ? ? ? ? ? {{ onlineForm.workYears ? onlineForm.workYears : "請(qǐng)選擇" }}
? ? ? ? ? ? ? ? </p>
? ? ? ? ? ? ? </div>
? ? ? ? ? ? </div>
? ? ? ? ? ? <PickerPopup
? ? ? ? ? ? ? @clickClose="clickClose"
? ? ? ? ? ? ? @clickConFirm="clickConFirm"
? ? ? ? ? ? ? :showPickerPopup="showPickerPopup"
? ? ? ? ? ? ? :pickerTitle="pickerTitle"
? ? ? ? ? ? ? :columnsData="columnsData"
? ? ? ? ? ? ? :selectIndex="selectIndex"
? ? ? ? ? ? ></PickerPopup>
? ? ? ? ? </div>
? ? ? ? </van-popup>
? ? ? </div>
? ? </div>
? ? <div>
? ? ? <div class="mask">
? ? ? ? <button
? ? ? ? ? class="btn"
? ? ? ? ? @click="submit"
? ? ? ? ? :class="{ btnBg: colorChange() }"
? ? ? ? ? v-preventReClick="1000"
? ? ? ? >
? ? ? ? ? 下一步
? ? ? ? </button>
? ? ? </div>
? ? </div>
? ? <return-left-modal
? ? ? class="modal"
? ? ? :show="isShowModal"
? ? ? title="溫馨提示"
? ? ? @hideModal="hideModal"
? ? ? @submit="submitModal"
? ? ? leftBtnText="取消"
? ? ? rightBtnText="繼續(xù)完善"
? ? >
? ? ? <p class="tips_text">完善簡歷,24小時(shí)好工作主動(dòng)聯(lián)系您</p>
? ? </return-left-modal>
? </div>
</template>
<script>
import Vue from 'vue';
import { Circle, DatetimePicker, Form, Field, Toast, Calendar, Picker, Overlay, ActionSheet, Popup, Tab, Tabs } from 'vant';
import 'vant/lib/index.less';
Vue.use(Circle).use(DatetimePicker).use(Form).use(Field).use(Calendar).use(Picker).use(Overlay).use(ActionSheet).use(Popup);
import ReturnLeftModal from '../perfectResume/ReturnLeftModal'
import { objBlurFun } from '@/utils/resize';
import request from './api'
import PickerPopup from './PickerPopup'
?
import Vconsole from 'vconsole'
if (process.env.NODE_ENV === "development") {
? new Vconsole();
}
?
export default {
? name: "ImproveResume",
? components: {
? ? ReturnLeftModal,
? ? PickerPopup,
? },
? data () {
? ? return {
? ? ? showPickerPopup: false,//選擇彈窗
? ? ? pickerTitle: '',//彈窗標(biāo)題
? ? ? columnsData: [],//彈窗數(shù)據(jù)
? ? ? isShowModal: false,
? ? ? workingYears: ['應(yīng)屆畢業(yè)', '1-3年', '3-5年', '6-9年', '10年以上'],
? ? ? educationColumns: ['不限', '初中以下', '中專/中技', '高中', '大專', '本科', '碩士', '博士'],
? ? ? columnsSalary: ['面議', '1000元以下/月', '1000-2000元/月', '2000-3000元/月', '3000-5000元/月', '5000-8000元/月', '8000-12000元/月', '12000-20000元/月', '20000-25000元/月', '25000元以上/月'],
? ? ? perDiem: ['面議', '10-50元/日', '50-100元/日', '100-200元/日', '200-300元/日', '300-500元/日', '500元及以上/日'],
? ? ? onlineForm: {
? ? ? ? type: 0, //0全職1兼職
? ? ? ? salary: "",//薪資
? ? ? ? education: "",//學(xué)歷
? ? ? ? workYears: '',
? ? ? },
?
? ? ? salaryChange: false,
? ? ? educationChange: false,
? ? ? workYearsChange: false,
?
? ? ? docmHeight: window.innerHeight,
? ? ? showHeight: window.innerHeight,
? ? ? selectIndex: 1,
?
? ? };
? },
? watch: {
? ? //監(jiān)聽屏幕高度變化(軟鍵盤彈出)
? ? showHeight: function (newValue) {
? ? ? if (this.docmHeight > newValue) {
? ? ? ? this.hideshow = false
? ? ? } else {
? ? ? ? this.hideshow = true
? ? ? }
? ? }
? },
? mounted () {
? ? objBlurFun('input')
? ? objBlurFun('textarea')
? ? document.documentElement.style.background = '#fff';
? ? // 解決安卓軟件盤彈出把底部fixed頂上去,window.onresize監(jiān)聽頁面高度的變化
? ? window.onresize = () => {
? ? ? return (() => {
? ? ? ? this.showHeight = window.innerHeight;
? ? ? })()
? ? }
? },
? methods: {
? ? clickClose () {
? ? ? console.log('取消')
? ? ? this.showPickerPopup = false
? ? },
? ? clickConFirm (v, index) {
? ? ? console.log(v, index, '點(diǎn)擊確認(rèn)')
? ? ? this.columnsData = index == 1 ? this.columnsSalary : index == 2 ? this.educationColumns : index == 3 ? this.workingYears : []
? ? ? this.selectIndex = index
? ? ? if (index == 1) {
? ? ? ? this.onlineForm.salary = v
? ? ? ? this.clickPicker(index + 1)
? ? ? } else if (index == 2) {
? ? ? ? this.onlineForm.education = v
? ? ? ? this.clickPicker(index + 1)
? ? ? } else if (index == 3) {
? ? ? ? this.onlineForm.workYears = v
? ? ? ? this.showPickerPopup = false
? ? ? }
?
? ? },
? ? clickPicker (v) {
? ? ? console.log(v, '點(diǎn)擊index')
? ? ? this.showPickerPopup = true
? ? ? this.pickerTitle = v == 1 ? '請(qǐng)選擇期望薪資' : v == 2 ? "請(qǐng)選擇最高學(xué)歷" : v == 3 ? '請(qǐng)選擇工作年限' : '請(qǐng)選擇'
? ? ? this.columnsData = v == 1 ? this.columnsSalary : v == 2 ? this.educationColumns : v == 3 ? this.workingYears : []
? ? ? this.selectIndex = v
? ? },
?
? ? clickGoBack () {
? ? ? this.userPhoneChange = false
? ? ? this.isShowModal = true
? ? },
? ? hideModal () {
? ? ? this.$store.commit('noScroll', true);
? ? ? this.isShowModal = false
? ? ? this.$store.state.entry === this.$route.path ? this.$ZhiYue.closePage() : this.$router.back();
? ? },
? ? submitModal () {
? ? ? this.$store.commit('noScroll', false);
? ? ? this.isShowModal = false
? ? },
? ? //下一步按鈕色值
? ? colorChange () {
? ? ? if (
? ? ? ? this.onlineForm.salary &&
? ? ? ? this.onlineForm.education &&
? ? ? ? this.workYears
? ? ? ) {
? ? ? ? return true
? ? ? }
? ? },
? ? // 驗(yàn)證
? ? validateOnlineForm (btn) {
? ? ? let valid = true;
? ? ? if (!this.onlineForm.salary || !this.onlineForm.salary.trim()) {
? ? ? ? valid = false;
? ? ? ? this.$shq.toast('請(qǐng)選擇期望薪資')
? ? ? ? this.welfareChange = true
? ? ? } else if (!this.onlineForm.education || !this.onlineForm.education.trim()) {
? ? ? ? valid = false;
? ? ? ? this.$shq.toast('請(qǐng)選擇最高學(xué)歷')
? ? ? ? this.postAgeChange = true
? ? ? } else if (!this.onlineForm.workYears || !this.onlineForm.workYears.trim()) {
? ? ? ? valid = false;
? ? ? ? this.$shq.toast('請(qǐng)選擇工作年限')
? ? ? ? this.educationnge = true
? ? ? }
? ? ? return valid;
? ? },
? ? //提交
? ? submit () {
? ? ? this.onlineForm.telephone = this.onlineForm.contact
? ? ? if (this.validateOnlineForm()) {
? ? ? ? request.saveNew(
? ? ? ? ? this.onlineForm
? ? ? ? ).then(resp => {
? ? ? ? ? if (resp && resp.code == 0) {
? ? ? ? ? ? Toast.success({
? ? ? ? ? ? ? message: '完善成功',
? ? ? ? ? ? ? onClose: () => {
? ? ? ? ? ? ? ? this.$store.state.entry === this.$route.path ? this.$ZhiYue.closePage() : this.$router.back();
? ? ? ? ? ? ? }
? ? ? ? ? ? })
? ? ? ? ? } else {
? ? ? ? ? ? resp.message && this.$shq.toast(resp.message);
? ? ? ? ? }
? ? ? ? }).catch(() => {
? ? ? ? ? this.btnDisable = false
? ? ? ? ? this.$shq.toast('操作失敗,請(qǐng)?jiān)俅螄L試')
? ? ? ? })
? ? ? }
? ? },
? },
? destroyed () {
? ? this.$store.commit('noScroll', false);
? },
};
</script>

   

<style scoped lang="less" >
* {
? margin: 0;
? padding: 0;
}
::v-deep .van-cell::after {
? border-bottom: none !important;
}
::v-deep .van-picker__cancel {
? opacity: 0;
}
?
.release-post {
? width: 100%;
? padding-bottom: 64px;
? padding-top: constant(safe-area-inset-top);
? padding-top: env(safe-area-inset-top);
}
?
::v-deep .van-field__control:disabled {
? font-size: 15px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 400;
? text-align: left;
? color: #333333;
? -webkit-text-fill-color: #333333;
}
.resume_main {
? width: 100%;
? margin-top: 64px;
? padding-bottom: 74px;
}
.resume_content {
? margin-left: 30px;
? margin-right: 30px;
}
.mask {
? width: 100%;
? background: #ffffff;
? box-shadow: 0px 0px 8px 0px rgba(204, 204, 204, 0.3);
? position: fixed;
? bottom: 0;
? left: 0;
? display: flex;
? justify-content: center;
? align-items: center;
? padding: 10px 0;
? padding-bottom: calc(env(safe-area-inset-bottom)+15px);
? padding-bottom: calc(env(safe-area-inset-bottom) + 15px);
}
.btn {
? font-size: 16px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 500;
? text-align: left;
? color: #ffffff;
? margin: 0 auto;
? text-align: center;
? line-height: 1.6rem;
? width: 100%;
? margin: 0 16px;
? height: 48px;
? background: #d8d8d8;
}
.btnBg {
? font-size: 16px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 500;
? text-align: left;
? color: #ffffff;
? margin: 0 auto;
? text-align: center;
? line-height: 1.6rem;
? width: 100%;
? margin: 0 16px;
? height: 48px;
? background: #d8d8d8;
? border: none;
? outline: none;
? background: linear-gradient(90deg, #50a3ff, #1283ff);
? border-radius: 4px;
}
?
.name_title {
? font-size: 16px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: bold;
? color: #333333;
}
?
.calendar {
? width: 100%;
? height: 49px;
? background: #ffffff;
? border: 1px solid #e5e5e5;
? border-radius: 5px;
? margin-top: 10px;
? padding-left: 20px;
? background: url("./images/drop-down.png") no-repeat 96% center;
? background-size: 10px 7px;
? padding-right: 25px;
? ::v-deep .van-field__control {
? ? font-size: 15px;
? ? font-family: PingFangSC, PingFangSC-Regular;
? ? font-weight: 400;
? ? text-align: left;
? ? color: #333333;
? ? margin-top: 12px;
? }
}
::v-deep input::-webkit-input-placeholder {
? font-size: 15px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 400;
? text-align: left;
? color: #afadad;
? -webkit-text-fill-color: #afadad;
}
.table_list {
? margin-top: 16px;
}
?
.header {
? width: 100%;
? display: flex;
? justify-content: flex-start;
? align-items: center;
? position: fixed;
? top: 0;
? height: 44px;
? background: #ffffff;
? padding-top: constant(safe-area-inset-top);
? padding-top: env(safe-area-inset-top);
? border-bottom: solid 0.5px #e5e5e5;
? z-index: 99;
}
.header_left {
? width: 20px;
? height: 20px;
? padding: 12px;
}
.header_title {
? width: 100%;
? margin: 0;
? margin-right: 44px;
? font-size: 18px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 500;
? text-align: center;
? color: #333333;
}
.borderStyle {
? border: solid 1px #ff1d28 !important;
? border-radius: 3px !important;
}
.tips_text {
? font-size: 12px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 400;
? text-align: center;
? color: #333333;
? padding-top: 8px;
? padding-bottom: 18px;
}
?
input::-webkit-input-placeholder {
? font-size: 15px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 400;
? text-align: left;
? color: #999999;
}
textarea::-webkit-input-placeholder {
? font-size: 15px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 400;
? text-align: left;
? color: #999999;
}
.van-field__control {
? color: #333333;
}
?
.resume_picker {
? display: flex;
? justify-content: space-around;
? align-items: center;
? flex: 1;
}
.select_title {
? display: flex;
? flex-direction: column;
? justify-content: center;
? align-items: center;
? padding: 16px 0;
? flex: 3;
? border-top: solid 3px #1283ff;
? background: linear-gradient(
? ? 180deg,
? ? rgba(18, 131, 255, 0.08) 0%,
? ? rgba(255, 255, 255, 0) 100%
? );
}
.not_title {
? display: flex;
? flex-direction: column;
? justify-content: center;
? align-items: center;
? padding: 16px 0;
? flex: 3;
? border-top: solid 3px #ffffff;
}
.select_text {
? font-size: 12px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 400;
? color: #666666;
}
.not_text {
? font-size: 12px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: 400;
? color: #666666;
}
.select_data {
? font-size: 16px;
? font-family: PingFangSC, PingFangSC-Regular;
? font-weight: bold;
? color: #1283ff;
? margin-top: 5px;
}
.not_data {
? font-size: 16px;
? font-family: PingFangSC-Medium, PingFang SC;
? font-weight: bold;
? color: #c2c2c2;
? margin-top: 5px;
}
</style>

2.創(chuàng)建PickerPopup.vue組件

<template>
? <div class="release-post" v-show="showPickerPopup">
? ? <!-- 薪資、學(xué)歷、工作年限 -->
? ? <van-picker
? ? ? show-toolbar
? ? ? :title="pickerTitle"
? ? ? :columns="columnsData"
? ? ? :default-index="2"
? ? ? @cancel="clickClose"
? ? ? @confirm="clickConFirm"
? ? ? :style="(height = 0)"
? ? ? :cancel-button-text="null"
? ? />
? </div>
</template>
<script>
?
export default {
? name: "PickerPopup",
? props: {
? ? showPickerPopup: {
? ? ? type: Boolean,
? ? ? default: false
? ? },
? ? pickerTitle: {
? ? ? type: String,
? ? ? default: '默認(rèn)'
? ? },
? ? columnsData: {
? ? ? type: Array,
? ? ? default: []
? ? },
? ? selectIndex: {
? ? ? type: Number,
? ? ? default: 1
? ? }
? },
? data () {
? ? return {
? ? ? oSelectIndex: 1
? ? };
? },
? watch: {
? ? selectIndex: {
? ? ? handler (newVal) {
? ? ? ? this.oSelectIndex = newVal
? ? ? },
? ? ? immediate: true,
? ? },
? },
?
? methods: {
? ? clickClose () {
? ? ? this.$emit('clickClose')
? ? },
? ? clickConFirm (value) {
? ? ? this.$emit('clickConFirm', value, this.oSelectIndex)
? ? },
? },
};
</script>
<style scoped lang="less" >
</style>

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • Vue組件化常用方法之組件傳值與通信

    Vue組件化常用方法之組件傳值與通信

    這篇文章主要給大家介紹了關(guān)于Vue組件化常用方法之組件傳值與通信的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2021-03-03
  • 一文教會(huì)你搭建vite項(xiàng)目并配置路由和element-plus

    一文教會(huì)你搭建vite項(xiàng)目并配置路由和element-plus

    由于項(xiàng)目搭建過程實(shí)在繁瑣,容易遺忘,每次新建項(xiàng)目還得百度一下怎么搭建,所以寫下本文提醒自己,下面這篇文章主要給大家介紹了關(guān)于搭建vite項(xiàng)目并配置路由和element-plus的相關(guān)資料,需要的朋友可以參考下
    2022-07-07
  • Vue編譯器源碼分析compileToFunctions作用詳解

    Vue編譯器源碼分析compileToFunctions作用詳解

    這篇文章主要為大家介紹了Vue編譯器源碼分析compileToFunctions作用詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-07-07
  • vue 導(dǎo)航菜單刷新狀態(tài)不消失,顯示對(duì)應(yīng)的路由界面操作

    vue 導(dǎo)航菜單刷新狀態(tài)不消失,顯示對(duì)應(yīng)的路由界面操作

    這篇文章主要介紹了vue 導(dǎo)航菜單刷新狀態(tài)不消失,顯示對(duì)應(yīng)的路由界面操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2020-08-08
  • vue{{}}拼接字符串和換行符方式

    vue{{}}拼接字符串和換行符方式

    這篇文章主要介紹了vue{{}}拼接字符串和換行符方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-12-12
  • vue+springboot實(shí)現(xiàn)登錄驗(yàn)證碼

    vue+springboot實(shí)現(xiàn)登錄驗(yàn)證碼

    這篇文章主要為大家詳細(xì)介紹了vue+springboot實(shí)現(xiàn)登錄驗(yàn)證碼,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-05-05
  • typescript中this報(bào)錯(cuò)的解決

    typescript中this報(bào)錯(cuò)的解決

    這篇文章主要介紹了typescript中this報(bào)錯(cuò)的解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-01-01
  • Vue實(shí)現(xiàn)側(cè)邊導(dǎo)航欄于Tab頁關(guān)聯(lián)的示例代碼

    Vue實(shí)現(xiàn)側(cè)邊導(dǎo)航欄于Tab頁關(guān)聯(lián)的示例代碼

    本文主要介紹了Vue實(shí)現(xiàn)側(cè)邊導(dǎo)航欄于Tab頁關(guān)聯(lián)的示例代碼,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-11-11
  • vue項(xiàng)目實(shí)現(xiàn)局部全屏完整代碼

    vue項(xiàng)目實(shí)現(xiàn)局部全屏完整代碼

    最近需要做一個(gè)全屏功能,所以這里給大家總結(jié)下,這篇文章主要給大家介紹了關(guān)于vue項(xiàng)目實(shí)現(xiàn)局部全屏的相關(guān)資料,需要的朋友可以參考下
    2023-09-09
  • 在Vue.js中使用TypeScript的方法

    在Vue.js中使用TypeScript的方法

    這篇文章主要介紹了在Vue.js中使用TypeScript的方法,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-03-03

最新評(píng)論