Просмотр исходного кода

Feature: Add initial Pins component

pull/169/head
winkidney 5 лет назад
committed by Isaac Bythewood
Родитель
Сommit
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>


Загрузка…
Отмена
Сохранить