All files / pages refactor-test.vue

0% Statements 0/4
100% Branches 0/0
100% Functions 0/0
0% Lines 0/4

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 25 26 27                                                     
<template>
  <div id="page">
    <button-primary small dangerous>pgkrekg</button-primary>
    <button-secondary dangerous>fzepkfezk</button-secondary>
    <button-icon href="https://ewen.works">bug_report</button-icon>
    <button-icon disabled>send</button-icon>
    <button-icon :filled="true">send</button-icon>
    <button-icon :filled="false">send</button-icon>
    <subject-badge color="#f00">Mayonnaise</subject-badge>
    <subject-badge color="#be5251" expandable>Kaguya-sama</subject-badge>
    <hr />
    <subject-badge color="#ffeeff" always-expanded>yikes!</subject-badge>
    <subject-badge color="#b00b1e" editable expandable>hehehe</subject-badge>
  </div>
</template>
 
<script>
import ButtonPrimary from '~/components/ButtonPrimary.vue'
import ButtonIcon from '~/components/ButtonIcon.vue'
import ButtonSecondary from '~/components/ButtonSecondary.vue'
import SubjectBadge from '~/components/SubjectBadge.vue'
 
export default {
  components: { ButtonPrimary, ButtonIcon, ButtonSecondary, SubjectBadge },
}
</script>