vue-d3-cloud
A Vue implementation of react-d3-cloud
Installation
npm install vue-d3-cloud --save
Usage
//App.vue<template> <div id="app"> <cloud :data="words" :fontSizeMapper="fontSizeMapper" /> </div></template> <script> name: 'app' { return words: text: 'Vue' value: 1000 text: 'js' value: 200 text: 'is' value: 800 text: 'very cool' value: 1000000 text: 'lunch' value: 100 Math * 5 } components: Cloud </script>