好的,以下是一個簡單的 SVG 代碼,畫了一隻大象:
<svg width="300" height="200" xmlns="http://www.w3.org/2000/svg">
<!-- 大象的身體 -->
<rect x="50" y="100" width="200" height="80" fill="grey" />
<!-- 大象的頭部 -->
<circle cx="150" cy="80" r="50" fill="grey" />
<!-- 大象的眼睛 -->
<circle cx="135" cy="70" r="5" fill="black" />
<circle cx="165" cy="70" r="5" fill="black" />
<!-- 大象的鼻子 -->
<rect x="145" y="80" width="10" height="40" fill="grey" />
<!-- 大象的牙齒 -->
<rect x="150" y="100" width="5" height="10" fill="white" />
<rect x="160" y="100" width="5" height="10" fill="white" />
<rect x="170" y="100" width="5" height="10" fill="white" />
</svg>
這個 SVG 代碼描述了一個簡單的大象,包括身體、頭部、眼睛、鼻子和牙齒。你可以將這個代碼插入到你的 Vue 程式碼中,或者直接在 HTML 文件中使用。