Jiajun Chen
Jiajun Chen
> What would the behavior of `ArrayAt` be? Would it be any different than `typeof array[number]`? `ArrayAt` should be the same as [`LastArrayElement`](https://github.com/sindresorhus/type-fest/blob/main/source/last-array-element.d.ts)
Similar problem here. I'm using [material-components-vue](https://github.com/matsp/material-components-vue). And I write code as following. ```html {{value.name}} Helper Text ``` It complains the rule 'valid-v-for'. I can't add key to template. If I...
Temporary solution, use the following config in your `.svgrrc.js` ```js module.exports = { jsx: { babelConfig: { generatorOpts: { jsescOption: { minimal: true } }, }, }, }; ``` I...
We'll add it once mdc-web add it. Please check https://github.com/material-components/material-components-web/issues/55
Seems like a sass-loader related problem. I use the following config in nuxt.config.js and get the same error ``` build: { /* ** You can extend webpack config here */...
This project is a wrapper around [mdc-web](https://github.com/material-components/material-components-web). We won't add it until mdc-web implement it. There's an [issue](https://github.com/material-components/material-components-web/issues/2135) in mdc-web about the multi-line text field.
Have you tried ```html Button ``` ```js this.$refs.ripple.mdcRipple.unbounded = true ```
If both the js approach and the `data-mdc-ripple-is-unbounded` approach work. I don't see the benefit of making it part of the Vue directive.
It will be confusing to make it a modifier. Consider the following ```html Button ``` ```js this.$refs.ripple.mdcRipple.unbounded = false ``` Though the button has `unbounded` modifier, it's actually bounded. Make...