vue-styleguidist
vue-styleguidist copied to clipboard
Created from react styleguidist for Vue Components with a living style guide
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [@rollup/plugin-commonjs](https://togithub.com/rollup/plugins/tree/master/packages/commonjs/#readme) ([source](https://togithub.com/rollup/plugins)) |...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/vue-styleguidist/vue-styleguidist). ## Config Migration Needed - [ ]...
Since whole building of webpack resources, typescript and sass took ages on webpack I decided to migrate the project to blazingly fast vite (sitll on vue 2 though)... I am...
**Current behavior** If component prop defined using Options API, like: ``` test: { type: String as PropType, default: null, }, ``` then generated prop info looks like this: ``` {...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [vue](https://togithub.com/vuejs/core/tree/main/packages/vue#readme) ([source](https://togithub.com/vuejs/core)) | [`2.7.8` -> `3.2.39`](https://renovatebot.com/diffs/npm/vue/2.7.8/3.2.39) |...
Hi, Can I use vue-styleguidist with composition API? Thanks,
Error I have a globalState that i import on some pages I import it like this and can use it inside a setup Everything is working on dev but not...
**Current behaviour** If there is something wrong with the config file, it gets skipped instead of causing an error. ```javascript // vue-cli-plugin-styleguidist/index.js:77 function getStyleguidist(args, api, options) { const confFilePath =...
My component looks like: ```vue class DDashboardFactory { define() { return defineComponent({ components: { DClock }, props: { title: { type: String, required: true }, leftAside: { type: Array as...
I have a dropdown component that extends vue-multiselect ``` import VueMultiselect from 'vue-multiselect'; export default { name: 'GDropdown', extends: VueMultiselect, inheritAttrs: false, components: { VueMultiselect, }, methods: {}, }; ```...