iframe-mixin.js 294 B

12345678910111213141516
  1. /**
  2. * iframe 混入
  3. */
  4. import store from '@/store';
  5. import { TAB_KEEP_ALIVE } from '@/config/setting';
  6. export const iframeMixins = [
  7. {
  8. computed: {
  9. // 是否开启 keep-alive
  10. keepAlive() {
  11. return TAB_KEEP_ALIVE && store?.state?.theme?.showTabs;
  12. }
  13. }
  14. }
  15. ];