0.1.0 • Published 4 years ago

vue-drupal-entity v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Vue \

Render Drupal Entities and fields with Drupal JSON:API Entities schema support.

This is a proof of concept, documentation is incomplete.

Installation

`$ npm install vue-drupal-entity

Usage

<template>
  <drupal-entity :entity="entity" :schema="schema" />
</template>

<script>
import Vue from 'vue'
import VueDrupalEntity from 'vue-drupal-entity'

Vue.use(VueDrupalEntity)

export default {
  data: () => ({
    entity: {
      ...
    },
    schema: {
      ...
    }
  })
}
</script>