master: change repo
This commit is contained in:
23
src/views/Pricing.vue
Normal file
23
src/views/Pricing.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user