vue做登陆页面

<!DOCTYPE html>
<html lang="en">

<head>
  <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
  <script src="https://unpkg.com/axios/dist/axios.min.js"></script>


</head>

<body>
  <div id="app">
    <!-- 9、双向数据绑定 -->
    <input v-model="username" />{{username}}
    <!-- 基本属性的响应式对象 -->
    <input v-model="password" /> {{password}}
    <button @click="refFun">提交</button>
  </div>


  <script>
    const { createApp, ref, reactive } = Vue;
    const username = ref('');
    const password = ref('');

    createApp({
      setup() {
        //写完函数也要去注册
        function refFun() {
          alert(username.value + password.value);
          axios.post('http://192.168.5.220:8083/system/register', {
            username: username.value,
            password: password.value
          })
            .then(function (response) {
              console.log(response);
            })
            .catch(function (error) {
              console.log(error);
            });

        }
        return {
          username,
          password,
          refFun,
        }
      }
    }).mount('#app')
  </script>


</body>

</html>

  • 4
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
1. 创建一个Vue项目: 在命令行中输入以下命令来创建一个Vue项目: ``` vue create my-project ``` 2. 安装axios: 使用以下命令安装axios库: ``` npm install axios --save ``` 3. 创建一个登陆页面组件: 在src/components目录下创建一个名为Login.vue的组件,代码如下: ``` <template> <div> <form> <label>用户名</label> <input type="text" v-model="username"> <label>密码</label> <input type="password" v-model="password"> <button @click.prevent="login">登陆</button> </form> </div> </template> <script> import axios from 'axios'; export default { data() { return { username: '', password: '', }; }, methods: { login() { axios.post('/api/login', { username: this.username, password: this.password, }) .then((response) => { console.log(response); }) .catch((error) => { console.log(error); }); }, }, }; </script> ``` 在这个组件中,我们使用了axios库来向后端发送POST请求,将用户名和密码发送到/api/login接口。 4. 在main.js中配置axios: 在src/main.js文件中添加以下代码: ``` import axios from 'axios'; axios.defaults.baseURL = 'http://localhost:3000'; Vue.prototype.$http = axios; ``` 这个代码片段将axios的基础URL设置为http://localhost:3000,这是我们后端服务器的地址。 5. 在App.vue中引入Login组件: 在src/App.vue文件中引入Login组件,代码如下: ``` <template> <div id="app"> <Login /> </div> </template> <script> import Login from './components/Login.vue'; export default { name: 'App', components: { Login, }, }; </script> ``` 6. 运行Vue项目: 在命令行中输入以下命令来运行Vue项目: ``` npm run serve ``` 这个命令将启动一个开发服务器,并在浏览器中打开我们的应用程序。现在,我们可以在浏览器中访问登陆页面,填写表单并点击登陆按钮,向后端服务器发送POST请求。根据后端服务器的响应,我们可以在浏览器的控制台中看到登陆结果。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值