Пожалуйста, включите JavaScript.
Главная
Помощь
Вход
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
Сommit
90a44df994
2 измененных файлов
:
22 добавлений
и
4 удалений
Разделённый вид
Опции Diff
Показать статистику
Скачать 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>
Редактирование
Предпросмотр
Загрузка…
Отмена
Сохранить