app.js 343 B

12345678910111213141516
  1. import { defineStore } from 'pinia'
  2. import { isMobile } from "@/utils"
  3. const useAppStore = defineStore("app", {
  4. state: () => ({
  5. device: isMobile() ? "phone" : "pc"
  6. }),
  7. actions: {
  8. // 手动更换,再pc端中,视口少于768px会使用
  9. setDevice(device){
  10. this.device = device
  11. }
  12. },
  13. });
  14. export default useAppStore;