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.

26 lines
304 B

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