mirror of
https://github.com/pinry/pinry.git
synced 2025-11-18 02:40:40 +01:00
Feature: Add initial Pins component
This commit is contained in:
committed by
Isaac Bythewood
parent
cf7914e593
commit
90a44df994
19
pinry-spa/src/components/Pins.vue
Normal file
19
pinry-spa/src/components/Pins.vue
Normal file
@@ -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>
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user