最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

vue3.0 CLI - 2.2 - 組件 home.vue 的初步改造

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:07:44
文檔

vue3.0 CLI - 2.2 - 組件 home.vue 的初步改造

vue3.0 CLI - 2.2 - 組件 home.vue 的初步改造:我的 github 地址 - vue3.0Study - 階段學(xué)習(xí)成果都會(huì)建立分支。 helloworld.vue 都挪到 about 路由當(dāng)中。 <template><div class=about><HelloWorld msg=vue 官方相關(guān)資料的鏈接/></div>
推薦度:
導(dǎo)讀vue3.0 CLI - 2.2 - 組件 home.vue 的初步改造:我的 github 地址 - vue3.0Study - 階段學(xué)習(xí)成果都會(huì)建立分支。 helloworld.vue 都挪到 about 路由當(dāng)中。 <template><div class=about><HelloWorld msg=vue 官方相關(guān)資料的鏈接/></div>

我的 github 地址 - vue3.0Study - 階段學(xué)習(xí)成果都會(huì)建立分支。

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>

下面我們開始整理玩轉(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ì)腳本之家網(wǎng)站的支持!

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

vue3.0 CLI - 2.2 - 組件 home.vue 的初步改造

vue3.0 CLI - 2.2 - 組件 home.vue 的初步改造:我的 github 地址 - vue3.0Study - 階段學(xué)習(xí)成果都會(huì)建立分支。 helloworld.vue 都挪到 about 路由當(dāng)中。 <template><div class=about><HelloWorld msg=vue 官方相關(guān)資料的鏈接/></div>
推薦度:
標(biāo)簽: home 組件 2.2
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top