
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
vue2-helpers
Advanced tools
A util package to use Vue 2 with Composition API easily.
NOTE:
- vue2-helpers@1 is for vue2.5 and 2.6
- vue2-helpers@2 is for vue2.7
npm i -S vue2-helpers
import { createVuexHelpers } from 'vue2-helpers';
import { useRouter } from 'vue2-helpers/vue-router';
const { useState } = createVuexHelpers<
RootState, RootGetters, RootMutations, RootActions
>();
// Get a reactive and mutable ref object "stateA"
const { stateA } = useState('module', ['stateA']);
const router = useRouter();
router.push('/login');
Features | Description |
---|---|
createVuexHelpers <RootState, RootGetters, RootMutations, RootActions >(): { useState , useGetters , useMutations , useActions } | The helper methods in return value are used to replace mapState , mapGetters ,mapMutations , mapActions |
Features | Description |
---|---|
createStore <S>(options: StoreOptions<S>): Store<S> | |
useStore <S = any>(): Store<S> |
Features | Description |
---|---|
createRouter (options: RouterOptions): Router | |
onBeforeRouteLeave (leaveGuard: NavigationGuard): void | |
onBeforeRouteUpdate (updateGuard: NavigationGuard): void | |
useRoute (): RouteLocationNormalized | |
useRouter (): Router | |
router.isReady (): Promise<void> |
FAQs
A util package to use Vue 2 with Composition API easily
The npm package vue2-helpers receives a total of 1,477 weekly downloads. As such, vue2-helpers popularity was classified as popular.
We found that vue2-helpers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.