Skip to content

Commit

Permalink
Update docs, indicate availability of a fallback option
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Nov 8, 2024
1 parent fdb4e99 commit 7c76303
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/content/vue-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@ The `GalaxyCharts` core component serves as a container for embedding JavaScript

```vue
<template>
<GalaxyCharts>
<GalaxyCharts :credentials="credentials" :incoming="incoming">
<template #default="{ datasetId, datasetUrl, root, settings, specs, tracks }">
<!-- Place your plugin code here! -->
</template>
</GalaxyCharts>
</template>
```

## Overview of Props
| Variable | Description |
|----------|-------------|
|**credentials**| (Optional) Specifies whether to include or omit credentials in the request. Acceptable values are "include" or "omit."
|**incoming**| (Optional) Use this when parsing incoming data prepared by Galaxy as a property. If not specified, the component will look for data in the `#app` container's `data-incoming` attribute. This incoming data includes details and settings for visualization plugins.

## Overview of Slot Values

| Variable | Description |
Expand Down

0 comments on commit 7c76303

Please sign in to comment.