Can we monitor changes in the clientWidth of a component's element (this.$el.clientWidth)? Here's an example:
this.$watch(
() => {
return this.$el.clientWidth;
},
(newWidth, oldWidth) => {
console.log(newWidth);
}
)