<svg width=300px height=75px viewbox="0 0 450 100">...</svg> // It works. Scaling of the viewbox to 300px is OK.
<svg width=300px height=75px :viewbox="viewbox">...</svg> // All the same, but 'viewbox' is reactive property. Scaling doesnt work.
<svg width=300px height=75px :viewbox="'0 0 450 100'">...</svg> // Doesnt work too
视图框= '0 0 450 100' - Vue数据属性
请尝试:https://jsfiddle.net/y0zgefs8/
1条答案
按热度按时间wqsoz72f1#
解决了。
使用 *:视图框. Camel 形 * 代替 *:视图框 *