mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
16 lines
211 B
Vue
16 lines
211 B
Vue
<template>
|
|
<div style="padding:30px;">
|
|
<el-input v-model="input" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'Menu122',
|
|
data() {
|
|
return {
|
|
input: 'Menu1-2-2'
|
|
}
|
|
}
|
|
}
|
|
</script>
|