| 123456789101112131415161718192021222324252627282930 |
- <template>
- <remind-box :title="remindText" :timeoutCount="timeoutCount"></remind-box>
- </template>
- <script>
- import { RemindBox } from '~components/mobile/common'
- export default {
- layout: 'mobile',
- middleware: 'authenticated',
- data () {
- return {
- remindText: '',
- timeoutCount: ''
- }
- },
- components: {
- RemindBox
- },
- fetch ({ store, params }) {
- return Promise.all([])
- },
- methods: {
- setRemindText: function (str) {
- this.remindText = str
- this.timeoutCount++
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|