HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/resources/js/components/vue/UserAddress.vue
<template>
    <div class="c-user-address">
        <address class="c-user-address__data">
            {{ this.first_name + ' ' + this.last_name_prefix + ' ' + this.last_name }}<br>
            {{ this.street + ' ' + this.house_number }}<br>
            {{ this.postal_code + ' ' + this.city + ', ' + this.country }}<br>
        </address>
        <slot></slot>
    </div>
</template>

<script>
    import {mapGetters} from "vuex";

    export default {
        props: {
            first_name: {
                type: String,
                default: ''
            },
            last_name_prefix: {
                type: String,
                default: ''
            },
            last_name: {
                type: String,
                default: ''
            },
            street: {
                type: String,
                default: ''
            },
            house_number: {
                type: String,
                default: ''
            },
            postal_code: {
                type: String,
                default: ''
            },
            city: {
                type: String,
                default: ''
            },
            country: {
                type: String,
                default: ''
            },
        },
    };
</script>