Vue 사용자 정의 toast 구성 요소 의 인 스 턴 스 코드
STEP 1:toast.vue 를 쓰 고 스타일 같은 것 을 먼저 정 합 니 다.
<template>
<div v-show="showToast" class="toast" :class="position">
<div class="toast_container" v-if="type=='success'">
<div><i class="iconfont icon-check icon"></i></div>
<div class="msg_container">{{message}}</div>
</div>
<div class="toast_container" v-else-if="type=='wrong'">
<div><i class="iconfont icon-warning-circle icon"></i></div>
<div class="msg_container">{{message}}</div>
</div>
<div class="toast_container" v-else-if="type=='loading'">
<div><loading10></loading10></div>
<div class="msg_container">{{message}}</div>
</div>
</div>
</template>
<script>
import loading10 from '../loading/spiner'
export default{
props:{
message:String,
type:{
validator: function (value) {
//
return ['success', 'wrong', 'loading'].indexOf(value) !== -1
},
default:'success'
},
duration:{
type:Number,
default:3000
},
position:{
type:String,
default:'middle'
}
},
components:{
loading10
},
data(){
return{
showToast:false
}
}
}
</script>
<style scoped>
.toast{
width:100%;
}
.toast_container{
background: rgba(0, 0, 0, 0.7);
border-radius: 8px;
color:#fff;
margin-left:88px;
margin-right:88px;
text-align:center;
padding-top:15px;
padding-bottom: 15px;
}
.top{
position:absolute;
top:10%;
}
.middle{
position:absolute;
top:40%;
}
.bottom{
position:absolute;
top:70%;
}
.msg_container{
margin-top:8px;
margin-left:15px;
margin-right:15px;
line-height: 22px;
font-size: 16px;
word-wrap: break-word;
}
.icon{
font-size:30px;
}
</style>
모두 세 가지 스타일 입 니 다.성공(success),실패(wrong),로드 중(loading);
모두 세 가지 위치,위(top),중(middle),아래(bottom);
관련 된 모든 도안 은 아 리 의 iconformant 핸드폰 타 오 바 오 아이콘 라 이브 러 리 에서 나 왔 다.
로 딩 중 애니메이션 은 자신 이 쓴 어 설 픈 로 딩 구성 요소(emmm,여러분 의 눈 을 오염 시 키 지 않 습 니 다.필요 한 것 은 댓 글 창 에서 알 수 있 습 니 다 (:з」∠)_)
두 번 째 단계:index.js 를 쓰 고 toast 구성 요소 의 실례 화 를 완성 합 니 다
import Vue from 'vue'
import Toast from './toast'
let singleToast=true;
let queue=[];
function createInstance(){
//
if(!queue.length||!singleToast){
const ToastConstructor = Vue.extend(Toast);
//
const toastDom = new ToastConstructor({
el: document.createElement('div'),
});
// toast.vue body
document.body.appendChild(toastDom.$el);
queue.push(toastDom);
singleToast=true;
return toastDom;
}
};
//
function toast(options= {}) {
const toastDom = createInstance();
toastDom.message =typeof options === 'string' ? options : options.message;
toastDom.type = options.type || 'success';
toastDom.duration = options.duration || 3000;
toastDom.position = options.position || 'middle';
if(!toastDom.message){
toastDom.showToast =singleToast= false;
}else{
toastDom.showToast=true;
setTimeout(() => {toastDom.showToast =singleToast= false} ,toastDom.duration);
}
}
// vue ,
// vue this.$toast()
// Vue.prototype.$toast = showToast
Vue.prototype.$toast = toast;
export default toast
singleToast 와 queue 를 설정 하 는 목적 은 같은 시기 에 인터페이스 에 하나의 toast 만 있 고 여러 개의 toast 가 동시에 나타 나 지 않도록 하 는 것 입 니 다.toast 가 초기 화 되 기 때문에 모든 작업 전에 인터페이스 에 toast 가 나타 나 지 않도록 if 구문 으로 판단 합 니 다.
들 어 오 는 message 가 없 으 면 toast 를 표시 하지 않 습 니 다.(초기 화 된 toast 를 표시 하지 않 을 수 있 습 니 다)
그렇지 않 으 면 표시 되 고 일정 시간 이 지나 면 사라 집 니 다.singleToast 가 false 라 는 것 은 현재 인터페이스 에 toast 가 없다 는 것 을 의미 합 니 다.toast 인 스 턴 스 를 새로 만 들 수 있 습 니 다.(이때 if 판단 내 quue.length 는 0 이 아 닙 니 다.[초기 화 된 toast 구성 요소 자체 가 하나의 위 치 를 차지 합 니 다]singleToast 는 false 이기 때문에 만 들 수 있 습 니 다)
STEP 3:사용
main.js 에 다음 코드 를 추가 합 니 다:
import toast from './components/toast/index'
Vue.use(toast)
호출 할 Vue 파일 만 들 기:
<template>
<div>
<input type="button" value=" " @click="showToast">
</div>
</template>
<script>
export default {
methods: {
showToast () {
this.$toast({message:' ',type:'loading',position:'bottom',
duration:'2000'});
// this.$toast(' ');
}
}
}
</script>
모두 두 가지 방식 을 볼 수 있 습 니 다.대상 방식 으로 파 라 메 터 를 전송 할 수도 있 고 문자열 만 전송 할 수도 있 으 며 다른 것 은 기본 설정 을 사용 합 니 다.
총결산
위 에서 말씀 드 린 SVue 사용자 정의 toast 구성 요소 의 인 스 턴 스 코드 입 니 다.도움 이 되 셨 으 면 좋 겠 습 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.