We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be a good thing to include all the repo files in the npm published package.
Use case : override Quasar components, for example for override the dropdown component :
MyCustomDropdown.vue (redefines the Quasar dropdown component but inherits the same mixin :
<template> <div class="quasar-dropdown"> <div class="quasar-dropdown-target" @click="toggle"> <slot name="target"></slot> </div> <div v-el:menu class="quasar-dropdown-menu" style="display: none;"> <slot></slot> </div> </div> </template> <script> import vm from 'quasar-framework/src/vue-components/dropdown/dropdown-common.js' export default { mixins: [vm], destroy() { document.body.removeEventListener('mousedown', this.close) }, methods: { open(event) { console.log('open') }, mycustommethod() { } } } </script>
Several open source projects do it, including vue, vue-router, vue-i18n, etc.
The text was updated successfully, but these errors were encountered:
Will do. Scheduled for v0.5.1 in a few days max.
Sorry, something went wrong.
feat: #19 Include Quasar sources in npm packages
fb1cb37
Will be available in v0.5.1 in a few days.
No branches or pull requests
It would be a good thing to include all the repo files in the npm published package.
Use case : override Quasar components, for example for override the dropdown component :
MyCustomDropdown.vue (redefines the Quasar dropdown component but inherits the same mixin :
Several open source projects do it, including vue, vue-router, vue-i18n, etc.
The text was updated successfully, but these errors were encountered: