YetiForceCompany/YetiForceCRM

View on GitHub
public_html/src/components/NoResults.vue

Summary

Maintainability
Test Coverage
<!--
/**
 * NoResults component
 *
 * @description Global component
 * @license YetiForce Public License 6.5
 * @author Tomasz Poradzewski <t.poradzewski@yetiforce.com>
 */
-->
<template>
    <div class="flex items-center q-px-lg q-py-sm">
        <q-icon class="q-mr-sm" name="mdi-alert-outline"></q-icon>
        {{ translate('JS_NO_RESULTS_FOUND') }}
    </div>
</template>
<script>
export default {
    name: 'NoResults',
}
</script>
<style scoped></style>