Sha256: a1bc5f086744223667aacbc0b203435e0e8e411efd2f23b17f8571c64401ec1a

Contents?: true

Size: 1.98 KB

Versions: 12

Compression:

Stored size: 1.98 KB

Contents

<script setup>
/*
Lesli

Copyright (c) 2023, Lesli Technologies, S. A.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.

Lesli · Your Smart Business Assistant. 

Made with ♥ by https://www.lesli.tech
Building a better future, one line of code at a time.

@contact  hello@lesli.tech
@website  https://lesli.tech
@license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html

// · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
// · 

*/

// · import lesli stores
import { useOnboarding } from "LesliApp/onboarding/store"


// · implement stores
const storeOnboarding = useOnboarding()

// · translations
const translations = {
    core: {
        onboardings: I18n.t("core.onboardings")
    }
}

</script>
<template>
    <div class="field action-buttons">
        <div class="control mb-1">
            <button class="button is-primary" @click="storeOnboarding.next()">
                <span>{{ translations.core.onboardings.view_btn_continue }}</span>
                <span class="icon">
                    <span class="material-icons">
                        east
                    </span>
                </span>
            </button>
        </div>
        <div class="control">
            <button class="button is-text skip" @click="storeOnboarding.skip()">
                {{translations.core.onboardings.view_text_skip_onboarding_title}}
            </button>
        </div>
    </div>
</template>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
lesli-5.0.13 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.11 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.10 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.9 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.7 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.6 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.5 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.4 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.3 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.2 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.1 lib/vue/pages/onboarding/components/buttons.vue
lesli-5.0.0 lib/vue/pages/onboarding/components/buttons.vue