
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
provide some useful functions to imporve the development experience
Extends Store instance (Vuex)
const name = 'example'
const module = {
namespaced: true,
state: {
name: 'Example Store',
version: 'beta',
counter: {
num: 0
}
},
getters: {
count: state => state.counter.num
},
mutations: {
increment(state, offset) {
state.counter.num += offset
}
},
actions: {
plus({commit}, offset) {
commit('increment', offset)
}
}
}
// Default
extendStore(store, 'example', module)
// vuex-persistedstate
extendStore(store, 'example', module, ['name'])
const {useRef, useRefs, commit, dispatch, getter, mapGetter} = useStoreByModule('example')
useRef('counter.num') // 0
userRefs(['counter.num', 'name', 'version']) // [0, 'Example Store', 'beta']
commit('increment', 2) // 2
dispatch('plus', 3) // 5
getter('count') // 5
mapGetter({'count': 'countNew'}) // {countNew: 5}
1.0.7起新增环境隔离,默认不开启。
新增环境设置, 当启用环境隔离的时候,将会根据预设的环境 生成多环境store, 也可以为多个应用进行分别存储
// Init
setStoreEnv({
preset: ["local", "development", "testing", "uat", "production"],
enable: true,
env: 'local'
})
// update Env
setStoreEnv({ env: 'development'})
1.0.7起新增环境隔离
··· const env = getStoreEnv('env') // computed 获取当前环境 const envEnable = getStoreEnv('enable') // computed 获取是否开启了环境隔离 ···
FAQs
userful functions for vuex
We found that if-vuex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.