소스 검색

Feature: Add initial Pins component

pull/169/head
winkidney 5 년 전
committed by Isaac Bythewood
부모
커밋
90a44df994
2개의 변경된 파일22개의 추가작업 그리고 4개의 파일을 삭제
  1. +19
    -0
      pinry-spa/src/components/Pins.vue
  2. +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>


불러오는 중...
취소
저장