All files / lib/components nav-form.vue

69.23% Statements 9/13
60% Branches 6/10
100% Functions 4/4
69.23% Lines 9/13
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1918x 18x 18x   18x 18x                     18x    
<template>
    <b-form :id="id || null" inline>
    I    <slot></slot>
    </b-form>
</template>E
 
<script>
    import bForm from './form.vue';
    
    export default {
        components: [bForm],
        props: {
            id: {
                type: String,
            }
        }
    };
</script>