Skip to content

bpmn-io/vue-bpmn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

cf33e4a · Nov 7, 2024

History

47 Commits
Oct 24, 2023
Nov 7, 2024
Mar 24, 2021
Mar 26, 2019
Mar 26, 2019
Mar 24, 2021
Mar 26, 2019
Jul 3, 2023
Sep 25, 2024
Sep 25, 2024
Jul 3, 2023
Oct 20, 2023

Repository files navigation

vue-bpmn

CI

Use bpmn-js to display BPMN 2.0 diagrams in a Vue.js application.

Usage

<template>
  <vue-bpmn
    url="/public/diagram.bpmn"
    :options="options"
    v-on:error="handleError"
    v-on:shown="handleShown"
    v-on:loading="handleLoading"
  ></vue-bpmn>
</template>

<script>
  import VueBpmn from 'vue-bpmn';

  export default {
    components: {
      VueBpmn
    },
    data() {
      return {
        options: {
          propertiesPanel: {},
          additionalModules: [],
          moddleExtensions: []
        }
      }
    },
    methods: {
      handleError: function(err) {
        console.error('failed to show diagram', err);
      },
      handleShown: function() {
        console.log('diagram shown');
      },
      handleLoading: function() {
        console.log('diagram loading');
      }
    }
  };
</script>

Note that the diagram will be loaded via ajax from the given url and thus must be served by your app.

Resources

License

MIT