@lucien144/vue-dump-filter

1.0.0 • Public • Published

Dump filter for Vue

🐞 Tiny logger for Vue you can use in templates.

Installation

$ npm i @lucien144/vue-dump-filter

Usage

You can use it as a Vue filter: |dump

// component.vue
<template>
	{{ title|dump }}
</template>

Additionally you can use it as a Vue instance method $dump()

// component.vue
<template>
	<input type=text @keyup="$dump">
</template>
<script>
export default {
	methods: {
		login(username) {
			this.$dump(username);
		}
	}
}
</script>

What's the difference between console.log?

  1. You can't use console.log in the template section of single file components.
  2. When dumping reactive objects using console.log all values are usually hidden behind .... You also output all getters and setters. The $dump dumps plain object:

console.log

http://144.wtf/NrCSHF+

this.$dump

http://144.wtf/VvpDmk+

/@lucien144/vue-dump-filter/

    Package Sidebar

    Install

    npm i @lucien144/vue-dump-filter

    Weekly Downloads

    2

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    3.54 kB

    Total Files

    4

    Last publish

    Collaborators

    • lucien144