-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't access Vuex from a custom view component. #43
Comments
Same problem for me when dispatching an action in the Vuex store. |
The context of the dialog is different from that of your app. You'll need to pass the store to the plugin. I'll look into this in my spare time, possibly a new feature |
Hi, this is my custom view on nuxt // ~/components/vuejs-dialog.vue
<template>
<div class="dg-view-wrapper">
<div class="dg-content-body" style="border-bottom: none;">
<div class="dg-content" style="margin-bottom: 15px;">Apakah anda yakin untuk me-reject pengajuan ini ?</div>
<form autocomplete="off" class="dg-form" style="border: 1px solid #E1E6EA;border-bottom: none;border-top-left-radius: 4px;border-top-right-radius: 4px;">
<label for="dg-input-elem" style="font-size: 13px;">Type "Antu" below to confirm</label>
<input type="text" placeholder="Antu" autocomplete="off" id="dg-input-elem" style="width: 100%; margin-top: 10px; padding: 5px 15px; font-size: 16px; border-radius: 4px; border: 2px solid rgb(238, 238, 238);">
</form>
</div>
<div class="dg-content-footer" style="background-color: ghostwhite;border: 1px solid #E1E6EA;border-top: none;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;padding: 0 10px 10px;">
<button class="dg-btn dg-btn--cancel">
<span>Tidak</span>
</button>
<button disabled="disabled" class="dg-btn dg-btn--ok dg-pull-right">
<span class="dg-btn-content">
<span>Ya, Reject</span>
</span>
</button>
<div class="dg-clear"></div>
</div>
</div>
</template>
<script>
export default {
name: "MyCustomModal",
};
</script> In my custom view,
|
@Godofbrowser |
Hi guys, ` import store from './store' in the Plugin.prototype.mountIfNotMounted function you have to pass this to the Dialogconstructor let Vm = new DialogConstructor( { store: this.options.store } ) |
Although this feature is not available in the legacy version of this plugin, it is available on the latest version which has been rewritten for vue3. Please see: vuejs-dialog/src/plugin/promise.dialog.ts Lines 72 to 77 in fee48f8
I'll leave it open for now as a lot of projects still run vue2 i assume and I'm open to simple solutions to this issue if you find one pending when I am able to take a look again. |
I am using vuejs-dialog in a NUXT project.
My modals are with custom rendering (component).
Here is my setup:
And my custom component:
The problem
$store
is not available to the component and I get the following error:Is
$store
getting passed to the created dialog?The text was updated successfully, but these errors were encountered: