24 lines
515 B
Vue
24 lines
515 B
Vue
<template>
|
|
<div class="columns is-centered">
|
|
<div class="column is-half">
|
|
<h1 class="is-1 title">Offres disponibles</h1>
|
|
<h2 class="is-2 subtitle">
|
|
Vaquant simplifie vos budgets.
|
|
</h2>
|
|
<pricing-table />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Prop, Vue } from 'vue-property-decorator'
|
|
|
|
@Component({
|
|
components: {
|
|
'pricing-table': () => import('@/components/PricingTable.vue')
|
|
}
|
|
})
|
|
export default class Princing extends Vue {
|
|
}
|
|
</script>
|