feat: the cache can be configured to be encrypted

This commit is contained in:
vben
2020-11-23 23:24:13 +08:00
parent 3a132f3f4f
commit 234c1d1fae
20 changed files with 300 additions and 185 deletions

View File

@@ -1,8 +1,7 @@
import type { App } from 'vue';
import Authority from './src/index.vue';
export default (app: App): void => {
app.component(Authority.name, Authority);
};
import { withInstall } from '../util';
export default withInstall(Authority);
export { Authority };