Elfayeur - Remi

Results 12 comments of Elfayeur - Remi

@yyx990803 I think that would be nice that `v-html` compiles its template. Otherwise how are we supposed to manage this kind of behavior ? I have a list that can...

I think I found a decent solution to this problem, using render function: https://jsfiddle.net/gm4uf485/2/ ``` new Vue({ el: '#app', data: { msg: 'hello', template: null }, render: function(createElement) { if...

@jeblister See the JSFiddle above, it does use Vue2. You might be using the runtime-only version. You need the standalone version to use `Vue.compile()`. See: https://vuejs.org/v2/guide/installation.html#Standalone-vs-Runtime-only-Build But here is a...

I downgraded to `[email protected]`, same issue for `$--checkbox-bordered-height` missing in the `element-variables.scss` file. I had to go back to `[email protected]` to fix all this.

I have the **latest version** of `element-theme-chalk` and I **do have** both variables that `element-theme` is missing on my file `node_modules/element-theme-chalk/src/common/var.scss`. Still I get the error mentioned above.

Not my case: ``` $ npm -g list --depth=0 C:\Users\\AppData\Roaming\npm `-- [email protected] ```

@groenroos What are your `element-ui`, `element-theme-chalk` and `element-theme` versions? I personally have those versions and it works now: ```json { "dependencies": { "element-ui": "^2.0.11", }, "devDependencies": { "element-theme-chalk": "^2.0.11", }...

@snakepoon Correct, had to update again myself, there is a new issue. :weary: In my case it seems like element-theme is generating a file with the exact modifications I did...

@snakepoon I made some testing and it finally works. I am not sure why, can you try the following and tell me if it fixes it for you? ### Previous...

I already encountered this issue, I think. Tell me if we are talking about the same thing. You use `scoped` attribute on the `` of a child. Then you want...