Vue Sankey - Web API Service

DevExtreme provides the DevExtreme.AspNet.Data extension to access an ASP.NET Web API service. This extension consists of two parts: the server-side part implements data processing on the server according to the DevExtreme UI components' protocol; the client-side part creates and configures a CustomStore to access the server from the client. The following code shows how to use the extension's client-side createStore method:

App.vue
  • <template>
  • <DxSankey :data-source="store">
  • <!-- ... -->
  • </DxSankey>
  • </template>
  •  
  • <script>
  • import DxSankey from 'devextreme-vue/sankey';
  • import { createStore } from "devextreme-aspnet-data-nojquery";
  •  
  • const serviceUrl = "https://url/to/my/service";
  •  
  • const store = createStore({
  • key: ['from', 'to'],
  • loadUrl: serviceUrl + "/GetAction"
  • });
  •  
  • export default {
  • components: {
  • DxSankey
  • },
  • data() {
  • return {
  • store
  • }
  • }
  • }
  • </script>