RightOrWrong.vue 333 B

1234567891011121314151617181920212223
  1. <template>
  2. <i :class="classes"></i>
  3. </template>
  4. <script>
  5. export default {
  6. name: "right-or-wrong",
  7. props: {
  8. status: {
  9. type: Boolean,
  10. },
  11. },
  12. computed: {
  13. classes() {
  14. return [
  15. "right-or-wrong",
  16. "icon",
  17. this.status ? "icon-right" : "icon-wrong",
  18. ];
  19. },
  20. },
  21. };
  22. </script>