Element Plus 提供了输入框(Input)组件,用于获取用户输入。在使用 Element Plus 的 Input 组件之前,请确保已经正确引入了 Element Plus 库。

以下是一个简单的例子,演示如何在 Vue.js 中使用 Element Plus 的 Input 输入框:

首先,确保你已经引入了 Element Plus 库。你可以通过以下方式之一来引入:

1. 使用 npm 安装:
npm install element-plus --save

然后在你的项目中使用:
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/lib/theme-chalk/index.css'

const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')

2. 直接在 HTML 中引入:
<!-- 在你的 HTML 文件中引入 Element Plus 的 CSS 文件 -->
<link rel="stylesheet" href="path/to/element-plus/theme-chalk/index.css">

<!-- 在你的 HTML 文件中引入 Element Plus 的 JS 文件 -->
<script src="path/to/element-plus/index.js"></script>

然后,在你的 Vue 组件中使用 Input 输入框:
<template>
  <div>
    <el-input v-model="inputValue" placeholder="请输入内容"></el-input>
    <p>输入的内容是:{{ inputValue }}</p>
  </div>
</template>

<script>
export default {
  data() {
    return {
      inputValue: ''
    };
  }
}
</script>

这是一个简单的例子,你可以根据你的实际需求进行修改。


转载请注明出处:http://www.zyzy.cn/article/detail/5532/ElementPlus