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.

35 lines
598 B

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