Alexey Velikiy
8 years ago
8 changed files with 50 additions and 19 deletions
Before Width: | Height: | Size: 6.7 KiB |
@ -1,16 +0,0 @@ |
|||||||
<template> |
|
||||||
<div>aaaa</div> |
|
||||||
</template> |
|
||||||
|
|
||||||
<script> |
|
||||||
export default { |
|
||||||
name: 'hello', |
|
||||||
data () { |
|
||||||
return {} |
|
||||||
} |
|
||||||
} |
|
||||||
</script> |
|
||||||
|
|
||||||
<!-- Add "scoped" attribute to limit CSS to this component only --> |
|
||||||
<style scoped> |
|
||||||
</style> |
|
@ -0,0 +1,22 @@ |
|||||||
|
<template> |
||||||
|
<div id="holder"> |
||||||
|
<div> |
||||||
|
<a :href="prev.path"> < previous </a> |
||||||
|
<!-- TODO: source code link --> |
||||||
|
<a :href="next.path"> next > </a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
|
||||||
|
export default { |
||||||
|
data () { |
||||||
|
console.log(this.$route); |
||||||
|
return {} |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style> |
||||||
|
</style> |
@ -0,0 +1,18 @@ |
|||||||
|
<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> |
Loading…
Reference in new issue