Jona Goldman

Results 42 comments of Jona Goldman

This might help: ``` js function loaderDirective() { return { restrict: 'E', replace: true, scope: { key: '@' }, link: function (scope, element, attributes) { scope.$on('us-spinner:spin', function (event, key) {...

@kishankanugula I updated my previous comment with the correct css class (was in scss previously)

@FrancisTiong @manojjkurup I created a directive called 'loader'. It just wraps the original spinner with an overlay div and passes the 'key' scope attribute to the spinner. It also listens...

... and you use the loader directive `` instead of the original spinner. I you don't want the overlay you can use the regular spinner directive.

https://github.com/jnsh/arc-theme

https://github.com/jnsh/arc-theme

https://github.com/jnsh/arc-theme

https://github.com/jnsh/arc-theme

Why you don't do this: ```js // component file .vue import Vuebar from 'vuebar'; export default { components: { Vuebar }, // etc... } ``` See [Local Registration](https://vuejs.org/v2/guide/components-registration.html#Local-Registration)

I also like the aproach used in [IBM Components](https://www.carbondesignsystem.com/components/data-table/usage). **Sections Quick Jump** Main sections as tabs. Smaller sections as links. ![](https://i.ibb.co/4TxPMGF/1.png) **Live Demo Options** Theme and variants dropdowns on top,...