33 lines
381 B
JavaScript
33 lines
381 B
JavaScript
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
|
|
} |