이번에는 Vue 컴포넌트 개발 스킬에 대한 요약을 가져오겠습니다. Vue 컴포넌트 개발 시 주의사항은 무엇인가요?
머리말
졸업이 가까워지면서 간단한 개인 블로그를 작성했습니다. 프로젝트 주소는 여기를 클릭하여 방문하세요. (그나저나 별표를 요청하세요.) 이 글은 시리즈의 첫 번째 요약입니다. 다음으로 Element의 대화 상자와 팝업 구성 요소의 로우 프로파일 버전을 단계별로 모방해 보겠습니다.
Vue 단일 파일 컴포넌트 개발
vue-cli를 사용하여 프로젝트를 초기화할 때 src/comComponents 폴더에 HelloWorld.vue 파일이 있습니다. 이것이 단일 파일의 기본 개발 모델입니다. 구성 요소.
// 注册 Vue.component('my-component', { template: '<p>A custom component!</p>' }) // 创建根实例 new Vue({ el: '#example' })
다음으로 대화 구성 요소 작성을 시작합니다.
Dialog
대상 대화 상자 구성 요소의 기본 스타일은 그림과 같습니다.
대상 스타일에 따라 다음과 같이 결론을 내릴 수 있습니다.
dialog 구성 요소에는 표시할 titleprops가 필요합니다. 팝업 창 제목
dialog 구성 요소 OK 버튼을 눌렀을 때 OK 이벤트 를 발생시켜야 합니다(즉, 상위 구성 요소에 OK임을 알리기 위해).
<template> <p class="ta-dialogwrapper"> <p class="ta-dialog"> <p class="ta-dialogheader"> <span>{{ title }}</span> <i class="ios-close-empty" @click="handleCancel()"></i> </p> <p class="ta-dialogbody"> <slot></slot> </p> <p class="ta-dialogfooter"> <button @click="handleCancel()">取消</button> <button @click="handleOk()">确定</button> </p> </p> </p> </template> <script> export default { name: 'Dialog', props: { title: { type: String, default: '标题' }, }, methods: { handleCancel() { this.$emit('cancel') }, handleOk() { this.$emit('ok') }, }, } </script>
<ta-dialog title="弹窗标题" @ok="handleOk" @cancel="handleCancel"> <p>我是内容</p> </ta-dialog>
<template> <transition name="slide-down"> <p class="ta-dialogwrapper" v-if="isShow"> // 省略 </p> </transition> </template> <script> export default { data() { return { isShow: true } }, methods: { handleCancel() { this.isShow = false this.$emit('cancel') }, handleOk() { this.isShow = true this.$emit('ok') }, }, } </script>
핵심 클래스(css className) 스타일을 작성하는 것입니다.
.slide-down-enter-active { animation: dialog-enter ease .3s; } .slide-down-leave-active { animation: dialog-leave ease .5s; } @keyframes dialog-enter { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes dialog-leave { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-20px); } }
대화 상자를 캡슐화하여 MessageBox 만들기
Element의 MessageBox는 다음과 같이 사용됩니다.this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { this.$message({ type: 'success', message: '删除成功!' }); }).catch(() => { this.$message({ type: 'info', message: '已取消删除' }); });
import Vue from 'vue' import MessgaeBox from './src/index' const Ctur = Vue.extend(MessgaeBox) let instance = null const callback = action => { if (action === 'confirm') { if (instance.showInput) { instance.resolve({ value: instance.inputValue, action }) } else { instance.resolve(action) } } else { instance.reject(action) } instance = null } const showMessageBox = (tip, title, opts) => new Promise((resolve, reject) => { const propsData = { tip, title, ...opts } instance = new Ctur({ propsData }).$mount() instance.reject = reject instance.resolve = resolve instance.callback = callback document.body.appendChild(instance.$el) }) const confirm = (tip, title, opts) => showMessageBox(tip, title, opts) Vue.prototype.$confirm = confirm
그 안에 이름을 붙였습니다. 코드에는 두 가지 A 메소드가 있습니다:
onCancel() { this.visible = false this.callback && (this.callback.call(this, 'cancel')) }, onConfirm() { this.visible = false this.callback && (this.callback.call(this, 'confirm')) },
instance = new Ctur({ propsData }).$mount()
document.body.appendChild(instance.$el)
appendChild를 사용할 때 보이지 않게 유지한 다음 다음과 같은 코드를 사용하세요.
Vue.nextTick(() => instance.visible = true)
를 결정합니다.
Vue.extend를 통해 컴포넌트의 constructor를 상속받은 다음(정확하게 말하면 이렇게만 하겠습니다.) 이 생성자를 통해 관련 속성을 커스터마이징할 수 있습니다. (사용 시나리오: js가 컴포넌트를 호출함)
js 컴포넌트를 호출할 때 컴포넌트의 애니메이션 효과를 유지하려면 먼저 document.body.appendChild를 사용한 다음 Vue.nextTick(()을 사용할 수 있습니다. =>instance.visible = true)
이것이 바로 간단한 Vue 컴포넌트 개발 내용을 요약한 것입니다. 제가 작성한 관련 코드는 https://github.com/mvpzx/elapse/에 있습니다. tree/master/be/src/comComponents
이 기사의 사례와 기타 내용을 읽으신 후 방법을 마스터하셨다고 믿습니다. 얼마나 흥미롭습니까? PHP 중국어 웹사이트의 다른 관련 기사도 주목해 주세요!
추천 도서:
위 내용은 Vue 컴포넌트 개발 기술 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!