- fixed strange things...

This commit is contained in:
Paolo Arena
2019-10-10 15:54:38 +02:00
parent 276b822fa5
commit 105d01904b
21 changed files with 432 additions and 0 deletions

21
src/root/policy/policy.ts Normal file
View File

@@ -0,0 +1,21 @@
import Vue from 'vue'
import { Component } from 'vue-property-decorator'
import { static_data } from '@src/db/static_data'
import { PagePolicy } from '../../components/PagePolicy'
@Component({
name: 'Policy',
components: { PagePolicy }
})
export default class Policy extends Vue {
public mioalert = false
get static_data() {
return static_data
}
}