Sha256: b46686153e9b37cbd83a0abeb49bf240250eace1f90a613c78fd270983450d6d

Contents?: true

Size: 1.49 KB

Versions: 5

Compression:

Stored size: 1.49 KB

Contents

<script setup>
/*
Copyright (c) 2022, all rights reserved.

All the information provided by this platform is protected by international laws related  to 
industrial property, intellectual property, copyright and relative international laws. 
All intellectual or industrial property rights of the code, texts, trade mark, design, 
pictures and any other information belongs to the owner of this platform.

Without the written permission of the owner, any replication, modification,
transmission, publication is strictly forbidden.

For more information read the license file including with this software.

// · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
// · 
*/


// · import vue tools
import { ref, reactive, onMounted, watch, computed } from "vue"


// · import stores
import { useAccountsActivities } from "CloudAudit/stores/accounts/activities"


// · implement stores
const storeAccountsActivities = useAccountsActivities()


// · initializing
onMounted(() => {
    storeAccountsActivities.fetchIfEmpty()
})

</script>
<template>
    <section class="application-component">
        <lesli-header title="Account activities"></lesli-header>
        <lesli-toolbar @reload="storeAccountsActivities.fetch()" @search="storeAccountsActivities.search"></lesli-toolbar>
        <lesli-table
            :columns="storeAccountsActivities.columns"
            :records="storeAccountsActivities.records">
        </lesli-table>        
    </section>
</template>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lesli_audit-0.5.0 lib/vue/apps/accounts/activities.vue
lesli_audit-0.4.0 lib/vue/apps/accounts/activities.vue
lesli_audit-0.3.0 lib/vue/apps/accounts/activities.vue
lesli_audit-0.2.0 lib/vue/apps/accounts/activities.vue
lesli_audit-0.1.0 lib/vue/apps/accounts/activities.vue