refs: {
    someElement: HTMLDivElement;
};

this.$refs.someElement.clientWidth = 100;


我正进入(状态:


  无法分配给“ clientWidth”,因为它是常量或只读属性。


要么


  无法分配给“ offsetWidth”,因为它是常量或只读属性。

最佳答案

尝试

this.$refs.someElement.style.width = '100px';

关于javascript - 如何以编程方式设置HTMLElement的宽度?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52205894/

10-13 01:42