From: Eduardo San Martin Morote Date: Mon, 2 Aug 2021 12:56:14 +0000 (+0200) Subject: docs: point to install X-Git-Tag: v2.0.0-rc.2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f62ce5f5e2645ca96b6ed1a97f16620807666d4;p=thirdparty%2Fvuejs%2Fpinia.git docs: point to install --- diff --git a/docs/introduction.md b/docs/introduction.md index 907ac524..7dc00a6b 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -10,13 +10,16 @@ Pinia is a store library for Vue, it allows you to share a state across componen - A timeline to track actions, mutations - Stores appear in components where they are used - Time travel and easier debugging +- Hot module replacement + - Modify your stores without reloading your page + - Keep any existing state while developing - Plugins: extend Pinia features with plugins - Proper TypeScript support or **autocompletion** for JS users - Server Side Rendering Support ## Basic example -You start by creating a store: +This is what using pinia looks like in terms of API (make sure to check the [Getting Started](./getting-started.md) for complete instructions). You start by creating a store: ```js // stores/counter.js