JSFiddle - React, Tailwind, and code Playground

by gianlucaguarini

JavaScript

const logger = createLogger({
  location({ config, context }) {
     return context.props.name;
  }
})

const logger = createLogger({
  location({ config, context }) {
     const tag = vm.$options._componentTag;
		 return `${ tag ? `${ tag } #${ vm._uid }` : `#${ vm._uid }` }` || 'unknown';
  }
})