使用 JavaScript能使本网站更好的工作。
首页
帮助
登录
heuzef
/
pinry
镜像自地址
https://github.com/pinry/pinry.git
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
44
百科
动态
浏览代码
Feature: Add initial Pins component
pull/169/head
winkidney
5 年前
committed by
Isaac Bythewood
父节点
cf7914e593
当前提交
90a44df994
共有
2 个文件被更改
,包括
22 次插入
和
4 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+19
-0
pinry-spa/src/components/Pins.vue
+3
-4
pinry-spa/src/pages/Home.vue
+ 19
- 0
pinry-spa/src/components/Pins.vue
查看文件
@@ -0,0 +1,19 @@
<template>
<div class="pins">
<section class="section">
<div class="container">
hello world
</div>
</section>
</div>
</template>
<script>
export default {
name: 'pins',
};
</script>
<style scoped>
</style>
+ 3
- 4
pinry-spa/src/pages/Home.vue
查看文件
@@ -1,20 +1,19 @@
<template>
<div class="hello">
<PHeader></PHeader>
<section class="section">
<div class="container">
</div>
</section>
<Pins></Pins>
</div>
</template>
<script>
import PHeader from '../components/PHeader.vue';
import Pins from '../components/Pins.vue';
export default {
name: 'p-header',
components: {
PHeader,
Pins,
},
};
</script>
撰写
预览
正在加载...
取消
保存