Files
ZERO_CODE/ZeroCodeProject/project_template/top_components/submenuTop.js

33 lines
381 B
JavaScript
Raw Normal View History

2026-01-11 00:11:34 +08:00
import axios from "axios";
const name = "subMenu"
const components = {
}
const props = ["item"]
const data = function () {
return {
};
}
const computed = {
}
function mounted() {
}
const methods = {
}
export default {
name: name,
data: data,
methods: methods,
mounted: mounted,
computed: computed,
props: props,
components: components
}