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

10 lines
194 B
JavaScript

2 years ago
const { ref } = Vue;
2 years ago
const padStore = ref([]);
1 year ago
const currentPage = ref("");
1 year ago
const baseUrl = ref("")
2 years ago
export default function padliographyStore() {
1 year ago
return { padStore, currentPage, baseUrl };
2 years ago
}