1.1.1 • Published 6 months ago

@getplate/delta-vue v1.1.1

Weekly downloads
-
License
UNLICENSED
Repository
bitbucket
Last release
6 months ago

delta-vue

This library is part of the Delta Client utility packages. It provides a plugin to connect to the Plate Delta CMS in a Vue application.

Usage

import { createApp } from 'vue'
import router from "./router";
import { delta } from '@getplate/delta-vue'

const app = createApp(App);

app.use(delta, {
  router,
  library: {
    // slug and component mapping
  },
  blacklist: ["root"],
  mode: "dev",
});
app.use(router);

app.mount("#root");