vue-storyground-reader

1.3.2 • Public • Published

vue storyground reader · GitHub license

vue storyground reader is a package that includes vue components created in order to read the stories created with storygroundeditor.com. If you’re interested in a solution that works without Vue, we recommend Js storyground reader package. To see the docs click here.

Here's your first example to get you started:

<template>
  <div id="app">
    <game :gameData="jsonStory" />
  </div>
</template>
<script>
import { game } from "vue-storyground-reader";
import jsonStory from "./jsonStory.json";

export default {
  components: {
    game,
  },
  data() {
    return {
      jsonStory: jsonStory,
    };
  },
};
</script>

License

js storyground reader is MIT licensed.

Dependents (1)

Package Sidebar

Install

npm i vue-storyground-reader

Weekly Downloads

2

Version

1.3.2

License

none

Unpacked Size

557 kB

Total Files

18

Last publish

Collaborators

  • lestat1992