1.0.2 • Published 3 years ago

toolsjs_zsh v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

toolsjs_zsh

快速上手

安装

npm install toolsjs_zsh

全局注册(在main.js文件里注册)

import * as tools from 'toolsjs_zsh';
global.tools = tools;

局部注册(在你所使用的vue里注册)

import * as tools from 'toolsjs_zsh';

例子

import { deepClone } from 'toolsjs_zsh';
let obj = deepClone({a: 1});