This website works better with JavaScript.
首頁
說明
登入
heuzef
/
pinry
镜像来自
https://github.com/pinry/pinry.git
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
44
Wiki
Activity
瀏覽代碼
Feature: Add initial Pins component
pull/169/head
winkidney
5 年之前
committed by
Isaac Bythewood
父節點
cf7914e593
當前提交
90a44df994
共有
2 個文件被更改
,包括
22 次插入
和
4 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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>
Write
Preview
Loading…
取消
儲存