mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-15 14:03:36 +08:00
19 lines
319 B
Vue
19 lines
319 B
Vue
<template>
|
|
<div class="app-container">
|
|
<p>{{ $t("message.hsmenu2") }}</p>
|
|
<el-input v-model="input" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, ref } from "vue";
|
|
export default defineComponent({
|
|
name: "Menu2",
|
|
setup() {
|
|
return {
|
|
input: ref("")
|
|
};
|
|
}
|
|
});
|
|
</script>
|