You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { ref } from 'vue'
|
|
import { defineStore } from 'pinia'
|
|
|
|
export const usePinia = defineStore('usePinia', () => {
|
|
//主题
|
|
const theme=ref('light')
|
|
const themeChange=(v)=>{
|
|
theme.value=v
|
|
}
|
|
|
|
|
|
|
|
return { theme,themeChange}
|
|
})
|