18 lines
450 B
Vue
18 lines
450 B
Vue
|
<template>
|
||
|
<view>
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
<script setup>
|
||
|
import { onShow, onLoad } from '@dcloudio/uni-app'
|
||
|
import { getDicts } from "@/api/system/dict/data"
|
||
|
import { ref, reactive, getCurrentInstance } from 'vue'
|
||
|
import { useStore } from 'vuex';
|
||
|
const emit = defineEmits(['scrolltolower']);
|
||
|
const { proxy } = getCurrentInstance();
|
||
|
|
||
|
const iconConfig = proxy.iconConfig;
|
||
|
const tu21 = iconConfig.tu21;
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
</style>
|