mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
9 lines
123 B
JavaScript
9 lines
123 B
JavaScript
import { ref } from 'vue';
|
|
|
|
export default function user() {
|
|
const count = ref(1);
|
|
return {
|
|
count
|
|
};
|
|
}
|