Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PasswordList.vue « List « Components « vue « src - github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eba2e2ef58da0aab67dd567ad62fb479ad61ba67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
    <ul class="list password-list">
        <password v-for="password in passwords" :password="password" :key="password.getId()" :favicon="favicons"/>
    </ul>
</template>

<script>
    import Password from '@vue/Components/List/Item/Password';

    export default {
        components: {Password},
        props     : {
            passwords: {
                type   : Array,
                default: []
            },
            favicons: {
                type   : Boolean,
                default: false
            }
        }
    };
</script>

<style lang="scss">
    .list.password-list {
        list-style : none;
        padding    : 0;
        margin     : 0;
    }
</style>