dashboard
repositories
filestore
activity
login
blog
/
blog-facade
blog的前端代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
虫洞添加,统计代码添加,样式局部调整
inleft
2022-02-25
fc0c102554f509989dd74b199f298a67f266c3c8
[blog/blog-facade.git]
/
src
/
components
/
test4
/
C.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// C.vue
<template>
<div>
C:{{demo}}
</div>
</template>
<script>
export default {
name: "C",
inject: ['for'],
data() {
return {
demo: this.for
}
}
}
</script>