Alex Oleshkevich

Results 54 comments of Alex Oleshkevich

I've solved that via extending SmartImageView with this class: public class AspectRatioImageView extends SmartImageView { ``` public AspectRatioImageView(Context context) { super(context); } public AspectRatioImageView(Context context, AttributeSet attrs) { super(context, attrs);...

```javascript beforeRouteEnter (to, from, next) { next(vm => { console.log(vm.$config); }) } ```

you still can import `config.js` directly and read value from it: ```javascript import config from 'path/to/config.js' axios.get(config.url_i_need_to_read_from_config) ```

Create own config object instance: ```javascript // settings.js import Config from 'vue-config/src/config.js'; let configuration = { url_i_need_to_read_from_config: '/', }; export default const settings = new Config(configuration) ``` and use it...

@wishinghand this returns a pure new instance of `introJs` so it is up to you how to configure it. This is referenced in [README.md](https://github.com/alex-oleshkevich/vue-introjs#configuration)

I vote for Mount solution. This looks solid and does exactly the same things as Mount already does -> attach another routes/app with extra settings (middleware in our case).

I think we can do it in this way: 1. when you do `Request(scope, receive, send)` it will set self instance into `scope`. 2. next time, when you instantiate a...

Totally agree with you, it would be very convenient. I propose to add all unmatched path params to query string.

The proposed solution have some drawbacks: 1. adding a new argument breaks current API contract (people are not used to `*args` but know `**kwargs` and the latter one is very...