Denna sida fungerar bättre med Javascript igång.
Startsida
Hjälp
Logga in
heuzef
/
pinry
spegling av
https://github.com/pinry/pinry.git
Bevaka
1
Stjärnmärk
0
Förgrening
0
Kod
Ärenden
0
Släpp
44
Wiki
Aktiviteter
Bläddra i källkod
Feature: Add initial Pins component
pull/169/head
winkidney
5 år sedan
committed by
Isaac Bythewood
förälder
cf7914e593
incheckning
90a44df994
2 ändrade filer
med
22 tillägg
och
4 borttagningar
Delad Vy
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
Visa fil
@@ -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
Visa fil
@@ -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>
Skriv
Förhandsgranska
Laddar…
Avbryt
Spara