From 5f62ce5f5e2645ca96b6ed1a97f16620807666d4 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 2 Aug 2021 14:56:14 +0200 Subject: [PATCH] docs: point to install --- docs/introduction.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.47.2