mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 20:35:49 +08:00
Feat 所有包升级到最新版
This commit is contained in:
parent
d22b31bea0
commit
a7de81908c
Binary file not shown.
Before Width: | Height: | Size: 68 KiB |
@ -1,10 +1,10 @@
|
||||
<template>
|
||||
<div>
|
||||
<!-- 可以删掉 顶部 -->
|
||||
<!-- 删除试试 顶部 -->
|
||||
<HeaderCompontent></HeaderCompontent>
|
||||
<!-- 渲染出口 -->
|
||||
<router-view></router-view>
|
||||
<!-- 可以删除 底部菜单 -->
|
||||
<!-- 删除试试 底部菜单 -->
|
||||
<FootComponent></FootComponent>
|
||||
</div>
|
||||
</template>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 6.7 KiB |
17
src/mock/index.js
Normal file
17
src/mock/index.js
Normal file
@ -0,0 +1,17 @@
|
||||
// mock data
|
||||
export const data = {
|
||||
success: true,
|
||||
data: [{
|
||||
name: "React",
|
||||
id: 1,
|
||||
},{
|
||||
name: "Vue",
|
||||
id: 2,
|
||||
},{
|
||||
name: "Angular",
|
||||
id: 3,
|
||||
},{
|
||||
name: "Flutter",
|
||||
id: 4,
|
||||
}]
|
||||
};
|
@ -1,44 +1,37 @@
|
||||
<template>
|
||||
<div>
|
||||
<button v-on:click="loadMore">click me</button>
|
||||
<div>
|
||||
<ul>
|
||||
<li v-for="(item, index) in listArr" :key="index">
|
||||
<a href="">{{ index }} 《{{ item.name }}》</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="loading" v-if="loading">
|
||||
Loading...
|
||||
</div>
|
||||
<ul>
|
||||
<li v-for="(item, index) in listArr" :key="index">
|
||||
<a href="">{{ index }} 《{{ item.name }}》</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
let mock = require('../mock'); // 模拟请求
|
||||
|
||||
export default {
|
||||
data: () => ({
|
||||
loading: false,
|
||||
listArr: [],
|
||||
}),
|
||||
created() {
|
||||
this.loadList();
|
||||
},
|
||||
methods: {
|
||||
loadList() {
|
||||
let url = "https://api.github.com/search/code?q=addClass+in:file+language:js+repo:jquery/jquery";
|
||||
fetch(url, {
|
||||
method: "GET",
|
||||
}).then((res) => {
|
||||
const {data} = res;
|
||||
console.log(res);
|
||||
this.listArr = data.items;
|
||||
})
|
||||
.catch();
|
||||
},
|
||||
loadMore() {
|
||||
console.log("load more");
|
||||
data: () => ({
|
||||
listArr: [],
|
||||
page: 1,
|
||||
}),
|
||||
created() {
|
||||
this.loadList();
|
||||
},
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
loadList(page) {
|
||||
const {data, success} = mock.data;
|
||||
if (this.page > 1) {
|
||||
console.log("page is:", this.page);
|
||||
return this.listArr = this.listArr.concat(data);
|
||||
}
|
||||
this.listArr = data;
|
||||
},
|
||||
loadMore() {
|
||||
this.loadList(this.page++);
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
@ -11,24 +11,24 @@ import SecondComponent from '../pages/otherPages'
|
||||
import ThirdComponent from '../pages/otherPages2'
|
||||
|
||||
export default new VueRouter({
|
||||
mode: 'hash', // 还有 history 等
|
||||
base: __dirname,
|
||||
routes: [
|
||||
{
|
||||
path: '/index',
|
||||
component: Index,
|
||||
},
|
||||
{
|
||||
path: '/news',
|
||||
component: News,
|
||||
},
|
||||
{
|
||||
path: '/second',
|
||||
component: SecondComponent,
|
||||
},
|
||||
{
|
||||
path: '/third',
|
||||
component: ThirdComponent,
|
||||
}
|
||||
]
|
||||
mode: 'hash', // 还有 history 等
|
||||
base: __dirname,
|
||||
routes: [
|
||||
{
|
||||
path: '/index',
|
||||
component: Index,
|
||||
},
|
||||
{
|
||||
path: '/news',
|
||||
component: News,
|
||||
},
|
||||
{
|
||||
path: '/second',
|
||||
component: SecondComponent,
|
||||
},
|
||||
{
|
||||
path: '/third',
|
||||
component: ThirdComponent,
|
||||
}
|
||||
]
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user