このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
heuzef
/
pinry
ミラー元
https://github.com/pinry/pinry.git
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
リリース
44
Wiki
アクティビティ
ソースを参照
Feature: Add initial Pins component
pull/169/head
winkidney
5年前
committed by
Isaac Bythewood
親
cf7914e593
コミット
90a44df994
2個のファイルの変更
、
22行の追加
、
4行の削除
分割表示
差分オプション
統計情報を表示
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>
書き込み
プレビュー
読み込み中…
キャンセル
保存