This website works better with JavaScript.
Почетна
Помоћ
Пријавите Се
heuzef
/
pinry
огледало од
https://github.com/pinry/pinry.git
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Издања
44
Вики
Activity
Преглед изворни кода
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>
Write
Preview
Loading…
Откажи
Сачувај