1.0.1 • Published 2 years ago

@vt7/log-proxy v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Getting Started

$ yarn add @vt7/log-proxy

Setup

import { createApp } from 'vue'
import router from './router'
import App from './App.vue'
import '@vt7/log-proxy'

const app = createApp(App)

app.mount('#app')
<template>
  <div>
    {{ state }}
  </div>
</template>

<script setup>
import { reactive } from "vue";

const state = reactive({ a: 1 })

console._log('old log state', state)
console.log('new log state', state)

// old log state Proxy{a: 1}
//       [[Handler]]: Object
//       [[Target]]: Object
//       [[IsRevoked]]: false


// new log state {a: 1}
</script>
1.0.1

2 years ago

1.0.1-alpha.0

2 years ago

1.0.0

2 years ago

0.0.1-alpha.1

2 years ago

0.0.1-alpha.0

2 years ago