1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00
2019-12-14 15:05:47 +08:00

19 lines
302 B
Vue

<template>
<div style="padding:30px;">
<el-alert :closable="false" title="menu 1-2-2" type="warning">
<el-input key="Menu122" v-model="input" />
</el-alert>
</div>
</template>
<script>
export default {
name: 'Menu122',
data() {
return {
input: ''
}
}
}
</script>