calculator modal
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
<script setup>
|
||||
import { onMounted, ref, watch } from 'vue';
|
||||
import { useCompanyStore } from '../stores/company';
|
||||
import { useAuthStore } from '../stores/auth';
|
||||
import Spiner from '../components/ui/Spiner.vue';
|
||||
import CardBudget from '../components/CardBudget.vue';
|
||||
import CardEmpty from '../components/CardEmpty.vue';
|
||||
import { useAuthStore } from '../stores/auth';
|
||||
import Spiner from '../components/ui/Spiner.vue';
|
||||
import CardBudget from '../components/CardBudget.vue';
|
||||
import CardEmpty from '../components/CardEmpty.vue';
|
||||
import CreateBudgetModal from '../components/CreateBudgetModal.vue';
|
||||
|
||||
const companyStore = useCompanyStore();
|
||||
const authStore = useAuthStore();
|
||||
@@ -59,6 +60,7 @@ import CardEmpty from '../components/CardEmpty.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<CreateBudgetModal/>
|
||||
<div>
|
||||
<h2 class="title my-2">Calculadora</h2>
|
||||
</div>
|
||||
@@ -73,7 +75,7 @@ import CardEmpty from '../components/CardEmpty.vue';
|
||||
</button>
|
||||
<button
|
||||
class="btn-primary-sm radius-sm"
|
||||
data-toggle="modal" data-target="#formLoadModal"
|
||||
data-toggle="modal" data-target="#budgetModal"
|
||||
@click=""
|
||||
><i class="fa-solid fa-plus"></i> <span class="clear-sm"> Crear</span><span class="clear-md"> presupuesto</span></button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user