forked from verdnatura/salix-front
18 lines
347 B
Vue
18 lines
347 B
Vue
<script setup>
|
|
import { useRoute } from 'vue-router';
|
|
import VnSms from 'src/components/ui/VnSms.vue';
|
|
|
|
const route = useRoute();
|
|
const id = route.params.id;
|
|
|
|
const where = {
|
|
clientFk: id,
|
|
ticketFk: null,
|
|
};
|
|
</script>
|
|
<template>
|
|
<div class="column items-center">
|
|
<VnSms url="clientSms" :where="where" />
|
|
</div>
|
|
</template>
|