Alexey Velikiy
8 years ago
4 changed files with 35 additions and 24 deletions
@ -1,18 +0,0 @@
|
||||
<template> |
||||
<div> |
||||
<svg width="500" height="300"></svg> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
const d3 = require('d3'); |
||||
export default { |
||||
data () { |
||||
console.log(this.$route); |
||||
return {} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
</style> |
@ -0,0 +1,25 @@
|
||||
<!-- <template> |
||||
Is should be missing, otherwise |
||||
render() function will not execute |
||||
</template> --> |
||||
|
||||
<script> |
||||
const d3 = require('d3'); |
||||
export default { |
||||
render: function(createElement) { |
||||
var el = createElement('svg') |
||||
// console.log(el.elm); |
||||
var svg = d3.select(el.elm); |
||||
svg.attr('width', '500') |
||||
// d3.select(el.elm) |
||||
// .append('circle') |
||||
// .attr('cx', '250') |
||||
// .attr('cy', '150') |
||||
// .attr('r', '100') |
||||
return el; |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style> |
||||
</style> |
Loading…
Reference in new issue