dashboard
repositories
filestore
activity
login
blog
/
blog-facade
blog的前端代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
新增链接添加按钮,优化Dplayer播放
inleft
2022-08-12
0dd41bd8cee430d3a948b89c664cb511c400993c
[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>