vue做登陆页面

本文介绍了如何使用Vue.js框架中的v-model实现双向数据绑定,并结合axios库进行HTTPPOST请求,展示了一个基础的表单提交功能
摘要由CSDN通过智能技术生成
<!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>

  • 5
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值