Cristi Jora

Results 36 comments of Cristi Jora

Vuep docs can be found here https://cinwell.com/vuep/#/?id=demo There is not much to learn there. You can customize the look of it and change some config stuff. I think we could...

Can I see this online somewhere or get that code and test ? Sorry accidentally closed the pr. On mobile

@bicienzu at the moment don't think that's possible. If you need such a thing it can be added as a new event here https://github.com/cristijora/vue-tabs/blob/master/src/components/VueTabs.js#L63 `navigateToTab` is called only upon click...

@Enggawadhesh could you please share a screen maybe. That would help a lot so I don't have to guess 😄 how it should look.

Hi @ultrasamad By default they are actually horizontal. There is a vertical option as well https://jsfiddle.net/b44cc4dq/190/

Hi @stomaskov just make sure you `import Tabs from 'vue-nav-tabs/dist/vue-tabs.js` which is the ES5 compiled version that should give you any warnings like this. If you `import Tabs from 'vue-nav-tabs'`...

Yeah this can be environment related. I will check if the `main` file in package.json is set correctly as it might cause this issue.

You can easily achieve this with scoped slots http://jsfiddle.net/z11fe07p/2029/ ``` ``` ```js fields: ['__slot:image'] ``` In a real scenario you would have the image links in the json response from...

@paladosss Go once again through https://vuejs.org/v2/guide/components.html#Scoped-Slots so you can understand better. In your case: ```html ```

Can you detail on what setup you use for building vue components and how did you import the component? I guess the main issue is that for the current version...