master: change repo

This commit is contained in:
Julien Calixte
2019-08-22 11:50:32 +02:00
commit dbd63d341c
263 changed files with 26153 additions and 0 deletions

23
src/views/Pricing.vue Normal file
View 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>