PcSwitch.vue 914 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <div
  3. :class="['switch', status ? 'green' : 'red']"
  4. @click="changeStatus">
  5. <div :class="['switch_inner', status ? '' : 'right']">
  6. {{ status ? 'Yes' : 'No' }}
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. model: {
  13. prop: 'status',
  14. event: 'change',
  15. },
  16. props: {
  17. status: Boolean
  18. },
  19. methods: {
  20. changeStatus() {
  21. this.$emit('change', !this.status)
  22. },
  23. },
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .switch {
  28. width: 70px;
  29. height: 28px;
  30. cursor: pointer;
  31. transition: all 0.3s;
  32. div {
  33. width: 50%;
  34. height: 100%;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. background-color: #fff;
  39. transition: all 0.3s;
  40. }
  41. }
  42. .green {
  43. border: 1px solid #13ce66;
  44. background-color: #13ce66;
  45. }
  46. .red {
  47. border: 1px solid #e90000;
  48. background-color: #e90000;
  49. }
  50. .right {
  51. transform: translate(100%, 0);
  52. }
  53. </style>