A working componentized example app
parent
a915c4eef5
commit
fdacfdec9f
@ -0,0 +1,10 @@
|
|||||||
|
<template>
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="container">
|
||||||
|
<div class="content has-text-centered">
|
||||||
|
Follow us on
|
||||||
|
<a href="https://twitter.com/bstavroulakis" target="_blank">Twitter</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</template>
|
@ -0,0 +1,10 @@
|
|||||||
|
<template>
|
||||||
|
<nav class="navbar has-shadow">
|
||||||
|
<div class="container">
|
||||||
|
<a href="/">
|
||||||
|
<img src="http://bit.ly/vue-img"
|
||||||
|
alt="Vue SPA" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</template>
|
@ -1,23 +1,32 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<nav class="nav has-shadow">
|
<app-header></app-header>
|
||||||
<div class="container">
|
<section class="main-section section">
|
||||||
<a href="/">
|
<div class="container content">
|
||||||
<img src="http://bit.ly/vue-img" alt="Vue SPA" />
|
<category></category>
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</section>
|
||||||
<section class="main-section section"></section>
|
<app-footer></app-footer>
|
||||||
<footer class="footer">
|
|
||||||
<div class="container">
|
|
||||||
<div class="content has-text-centered">
|
|
||||||
Follow us on
|
|
||||||
<a href="https://twitter.com/bstavroulakis" target="_blank">Twitter</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {}
|
import AppHeader from './AppHeader.vue'
|
||||||
|
import AppFooter from './AppFooter.vue'
|
||||||
|
import Category from './Category.vue'
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
'app-header': AppHeader,
|
||||||
|
'app-footer': AppFooter,
|
||||||
|
'category': Category
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
$primary: #287ab1;
|
||||||
|
@import '~bulma';
|
||||||
|
|
||||||
|
.columns{
|
||||||
|
flex-wrap: wrap
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
Loading…
Reference in New Issue