All files / src/components/u-process-button.vue index.designer.vue

75% Statements 9/12
25% Branches 1/4
0% Functions 0/1
75% Lines 9/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24      1x   1x     1x                              
<template>
    <u-linear-layout v-if="$env.VUE_APP_DESIGNER" mode="inline">
        <u-button color="primary">提交</u-button>
        <u-button color="primary">同意</u-button>
        <u-button>拒绝</u-button>
        <u-button>转交</u-button>
    </u-linear-layout>
    <component
        v-else
        is="u-process-button-real"
        v-bind="[$attrs, $props]"
        v-on="$listeners">
    </component>
</template>
<script>
import UProcessButtonReal from './index.vue';
 
export default {
    component: {
        UProcessButtonReal,
    },
};
</script>