dashboard
repositories
filestore
activity
login
blog
/
blog-facade
blog的前端代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1.RSS更新 2.调整标签hover位置 3.font size
inleft
2024-05-18
57e3bead08715d72efaeffe90fafa179b8366473
[blog/blog-facade.git]
/
src
/
components
/
test1
/
article.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
<div>
<span v-for="(item, index) in articles" :key="index">{{item}},</span>
</div>
</template>
<script>
export default {
props: ['articles'],
data(){
return {
"name":"名咩咩咩咩"
}
}
}
</script>