Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526
  1. import { currentProfile } from '../services'
  2. const pidMixin = {
  3. props: {
  4. pid: {
  5. type: Number,
  6. required: true,
  7. validator: prop => typeof prop === 'number' || prop === null,
  8. },
  9. },
  10. }
  11. const profileMixin = {
  12. computed: {
  13. profile() {
  14. return currentProfile
  15. },
  16. isLoading() {
  17. return currentProfile.isLoading
  18. },
  19. isLoggedIn() {
  20. return currentProfile.isLoggedIn
  21. },
  22. },
  23. }
  24. export { pidMixin, profileMixin }