You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
401 B

<template>
<div>
<sign-pad />
4 years ago
<pagination />
</div>
</template>
<script>
4 years ago
import SignPad from '../components/form/SignPad'
4 years ago
import pagination from '../components/form/pagination'
export default {
name: 'App',
components: {
4 years ago
SignPad,
pagination
},
data() {
return {
}
},
5 years ago
mounted() {
5 years ago
},
methods: {
}
}
</script>