今回は、Vue での共通コンポーネントの使用について詳しく説明します。Vue で共通コンポーネントを使用する際の 注意事項 について、実際のケースを見てみましょう。
プロジェクト技術:
webpack + vue + element + axois (vue-resource) + less-loader+ ...vue操作メソッドの場合:
1. 配列データがまだ取得されていません。プリロードされたアニメーションを作成します<el-carousel :interval="3000" type="card" height="200px" class="common-mt-md"> <el-carousel-item v-for="item in movieArr" :key="item.id" class="text-center"> <img v-bind:src="item.images.small" alt="电影封面" class="ticket-index-movie-img"> </el-carousel-item>// 实际显示的内容-跑马灯 <p v-if="!movieArr.length" class="ticket-index-movie-loading"> <span class="el-icon-loading "></span> </p>// 当 movirArr的数组为空的时候,做出的预加载 loading </el-carousel>
<p v-if="!multipleSelection.length"> <el-button type="success" round disabled>导出</el-button> </p><!-- 不能点, 判断数组为空 --> <p v-else> <el-button type="success" round >导出</el-button> </p><!-- 可以点, 判断数组为不为空 -->
<el-form-item label="时间" prop="name"> <el-input v-model="ruleForm.name"></el-input>//绑定模型,检测输入的格式 <span class="el-icon-plus ticket-manage-timeinput" @click="addTime(this)"></span>//绑定方法,增加dom的操作 </el-form-item> <el-form-item label="时间" prop="name" v-for="item in timeArr" :key='item.id'> //timeArr数组与数据就渲染下面的dom,没有就不显示 <el-input v-model="ruleForm.name"></el-input> <span class="el-icon-minus ticket-manage-timeinput" @click="minusTime(this)"></span> </el-form-item>
timeInputString: '<el-input v-model="ruleForm.name"></el-input><span class="el-icon-minus"></span>'
addTime () { this.timeArr.push('str') }, minusTime () { this.timeArr.shift('str') }
<li v-for="section in item.sections" :key='section.id' @click="hideParMask" :class="getSectionId(section.id)"> <router-link :to="{ name: 'learning', params: { sectionId: section.id}, query: { courseId: courseId}}" > <span>{{item.orderInCourse}}.{{section.sectionNumber}}</span> <span>{{section.name}}</span> </router-link> </li>
getSectionId (sectionId) { return { active: this.$route.params.sectionId === sectionId, } }
getSectionId (sectionId) { return { active: this.$route.params.sectionId === sectionId, } }
<v-child :courseId="courseId" v-on:receiveTitle="receiveTitle"></v-child>
methods: { receiveTitle (name) { this.titleName = name; // titleName 就是 **@课程 } }
uses function(event)を親にコンポーネントが渡す親コンポーネントはこの属性を監視し、この属性にメソッドをバインドし、このパラメータは渡される値です。
6. : dom:
<course-tab :courseList = courseList ></course-tab>
courseList().then(res => { this.courseList = res.data.courses; }).catch( err => { console.log(err) });
props: { courseList: { type: Array } }
{ path: '*', redirect: '/' }
404 ページ
を作成してこのページにリダイレクトすることもできますrouter.push({ path: 'login-regist' }) // 如果这样写的话,会寻找路由最近的 / 然后在后面直接拼接login-regist; 为了防止在多级嵌套路由里面出现bug ,应该写全路由的全部信息,包括 / router.push({ path: '/login-regist' })
<p class="img" :style="{background: 'url(' + item.logoFileURL + ')'}"></p>
data () { return { scrolled: false, show: true } }, methods: { handleScroll () { this.scrolled = window.scrollY > 0; if (this.scrolled) { this.show = false; } } }, mounted () { window.addEventListener('scroll', this.handleScroll); }
メソッドの監視
@input="search",
<el-input
jsはテキストファイルをコピーする機能を実現します(詳細なステップバイステップの説明)
以上がVue の共通コンポーネントの使用方法の詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。