Injecting browser prefixes for grid not working with Vue
问题 I've blown an afternoon on this already and I'm stumped. I clock that IE11 doesn't support grid-template and that I need to use -ms-grid-columns and -ms-grid-rows instead but I'm trying to generate some CSS and inject it via a Vue method. This works in every browser except IE11: gridTemplate: function(){ var gridTemplate = "display: grid;"; gridTemplate += "grid-template: repeat(4, 1fr ) / repeat(4, 1fr);"; gridTemplate += "grid-gap: 3px;"; return gridTemplate; } So, to try and get it working