mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
44 lines
874 B
Vue
44 lines
874 B
Vue
<template>
|
|
<section class="section">
|
|
<div class="columns is-mobile">
|
|
<card
|
|
title="Free"
|
|
icon="github"
|
|
>
|
|
Open source on <a href="https://github.com/buefy/buefy"> GitHub</a>
|
|
</card>
|
|
|
|
<card
|
|
title="Responsive"
|
|
icon="cellphone-link"
|
|
>
|
|
<b class="has-text-grey">Every</b> component is responsive
|
|
</card>
|
|
|
|
<card
|
|
title="Modern"
|
|
icon="alert-decagram"
|
|
>
|
|
Built with <a href="https://vuejs.org/">Vue.js</a> and <a href="http://bulma.io/">Bulma</a>
|
|
</card>
|
|
|
|
<card
|
|
title="Lightweight"
|
|
icon="arrange-bring-to-front"
|
|
>
|
|
No other internal dependency
|
|
</card>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import Card from '~/components/Card'
|
|
export default {
|
|
name: 'HomePage',
|
|
components: {
|
|
Card
|
|
}
|
|
}
|
|
</script>
|