이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
도움말
로그인
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 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>
쓰기
미리보기
불러오는 중...
취소
저장