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.
27 lines
470 B
27 lines
470 B
<template>
|
|
<div class="app-container">
|
|
<v-distpicker> </v-distpicker>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import VDistpicker from "../../src/Distpicker"
|
|
// import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
|
|
|
|
export default {
|
|
name: "ArticleList",
|
|
components: { VDistpicker },
|
|
|
|
data() {
|
|
return {};
|
|
},
|
|
beforeCreated() {},
|
|
watch: {},
|
|
created() {},
|
|
mounted() {},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|