@harlem/plugin-reset

The official reset plugin for Harlem

Usage no npm install needed!

<script type="module">
  import harlemPluginReset from 'https://cdn.skypack.dev/@harlem/plugin-reset';
</script>

README

Harlem

Harlem Reset Plugin

npm

This is the official Harlem plugin for resetting stores to their initial state.

Getting started

Before installing the reset plugin make sure you have installed @harlem/core.

  1. Install @harlem/plugin-reset:
npm install @harlem/plugin-reset

Or if you're using Yarn:

yarn add @harlem/plugin-reset
  1. Create an instance of the plugin and register it with Harlem:
import App from './app.vue';

import harlem from '@harlem/core';
import createResetPlugin from '@harlem/plugin-reset';

createApp(App)
    .use(harlem, {
        plugins: [
            createResetPlugin()
        ]
    })
    .mount('#app');
  1. Call the reset method with the name of the store you wish to reset:
import {
    reset
} from '@harlem/plugin-reset';

export default function() {
    reset('my-store');
}