hookehuyr

新增隐私组件

1 +<!--
2 + * @Date: 2024-10-25 12:46:06
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2024-10-25 12:46:26
5 + * @FilePath: /hager/src/components/privacy.vue
6 + * @Description: 文件描述
7 +-->
8 +<template>
9 + <div class="privacy-page">
10 + Privacy
11 + </div>
12 +</template>
13 +
14 +<script>
15 +import mixin from 'common/mixin';
16 +
17 +export default {
18 + mixins: [mixin.init],
19 + data () {
20 + return {
21 +
22 + }
23 + },
24 + mounted () {
25 +
26 + },
27 + methods: {
28 +
29 + }
30 +}
31 +</script>
32 +
33 +<style lang="less" scoped>
34 +
35 +</style>