1.2.0 • Published 2 months ago

grapesjs-ja v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

grapesjs-ja

DEMO

HTML

<link
  href="https://unpkg.com/grapesjs/dist/css/grapes.min.css"
  rel="stylesheet"
/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="https://unpkg.com/grapesjs-ja"></script>

<div id="gjs"></div>

JS

const editor = grapesjs.init({
  container: "#gjs",
  height: "100%",
  fromElement: true,
  storageManager: false,
  plugins: ["grapesjs-ja"],
});

CSS

body,
html {
  margin: 0;
  height: 100%;
}

Summary

  • Plugin name: grapesjs-ja
  • Blocks
    • block-id-1
    • block-id-2
    • ... -->

Options

OptionDescriptionDefault
option1Description optiondefault value-->

Download

  • CDN
    • https://unpkg.com/grapesjs-ja
  • NPM
    • npm i grapesjs-ja
  • GIT
    • git clone https://github.com/guppi65513461/grapesjs-ja.git

Usage

Directly in the browser

<link
  href="https://unpkg.com/grapesjs/dist/css/grapes.min.css"
  rel="stylesheet"
/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="path/to/grapesjs-ja.min.js"></script>

<div id="gjs"></div>

<script type="text/javascript">
  var editor = grapesjs.init({
    container: "#gjs",
    // ...
    plugins: ["grapesjs-ja"],
    pluginsOpts: {
      "grapesjs-ja": {
        /* options */
      },
    },
  });
</script>

Modern javascript

import grapesjs from 'grapesjs';
import plugin from 'grapesjs-ja';
import 'grapesjs/dist/css/grapes.min.css';

const editor = grapesjs.init({
  container : '#gjs',
  // ...
  plugins: [plugin],
  pluginsOpts: {
    [plugin]: { /* options */ }
  }
  // or
  plugins: [
    editor => plugin(editor, { /* options */ }),
  ],
});

Development

Clone the repository

$ git clone https://github.com/guppi65513461/grapesjs-ja.git
$ cd grapesjs-ja

Install dependencies

$ npm i

Start the dev server

$ npm start

Build the source

$ npm run build

License

MIT

1.2.0

2 months ago

1.1.0

3 months ago

1.0.2

3 months ago