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