我的 github 地址 - vue3.0Study - 階段學(xué)習(xí)成果都會(huì)建立分支。
蒙陰ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)的ssl證書(shū)銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書(shū)合作)期待與您的合作!
helloworld.vue 都挪到 about 路由當(dāng)中。
<template><div class="about"><HelloWorld msg="vue 官方相關(guān)資料的鏈接"/></div></template> <script> import HelloWorld from '@/components/HelloWorld.vue' export default { name: 'about', components: { HelloWorld } } </script>
下面我們開(kāi)始整理玩轉(zhuǎn) home.vue,后臺(tái)數(shù)據(jù)使用 https://www.apiopen.top/journalismApi
先貼出 script 代碼:
export default { name: 'home', data: function (){ return { navs: {}, tts:[] } }, created: function (){ fetch('https://www.apiopen.top/journalismApi') .then(v=>v.json()) .then(v=>{ console.log(v.data); this.tts = v.data.toutiao; this.navs = v.data; }); } }
home.vue 組件有了兩個(gè)屬性:navs 和 tts 屬性。在 template 中使用如下代碼:
<template> <div class="home"> <div class="nav"> <div v-for="(value, key, index) in navs" :key="index"> {{key}} </div> </div> <ul> <li v-for="(tt,index) in tts" :key="index"> {{tt.title}} </li> </ul> </div> </template>
這個(gè)改造過(guò)程比較簡(jiǎn)單,就不多介紹。也建立一個(gè) git 分支上傳。
總結(jié)
以上所述是小編給大家介紹的vue3.0 CLI - 2.2 - 組件 home.vue 的初步改造,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)創(chuàng)新互聯(lián)網(wǎng)站的支持!
分享文章:vue3.0CLI-2.2-組件home.vue的初步改造
轉(zhuǎn)載源于:http://jinyejixie.com/article42/pggoec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、服務(wù)器托管、網(wǎng)站設(shè)計(jì)、網(wǎng)站改版、Google、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)