first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<template>
<div class="about">
<h2>关于我</h2>
</div>
</template>
<script>
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,33 @@
<template>
<div class="hello">
<ul>
<li v-for="(item,index) in BookList" :key="index">
<a :href="item.text_url">{{item.text_title}}</a>
</li>
</ul>
</div>
</template>
<script>
export default {
created () {
this.getIndexData()
},
data () {
return {
BookList: []
}
},
methods: {
async getIndexData() {
this.BookList = (await this.$http.get({ url: this.$config.api.home.index, parameter: {}})).data
}
}
}
</script>
<style scoped>
</style>