I've tried to append a line to a svg element but even though the line exists in DOM, it's not visible.
<svg id="app">
<svg-line></svg-line>
</svg>
<template id="svg-lineTemp">
<line x1="0" y1="0" x2="100" y2="100"></line>
</template>
<script>
Vue.component('svg-line', {
template: '#svg-lineTemp'
});
vm = new Vue({
el: '#app'
});
</script>