How to use Web3.js with Nuxt.js
Here's you can use web3.js in Nuxt.js as a plugin:
plugins/web3.js
import Web3 from 'web3'
export default (ctx, inject) => {
if(!process.client) return // don't run on serverside
inject( // Inject the $web3 instance into the context object i...
miketromba.hashnode.dev1 min read