The input type is number and cancels the arrow on the right

You can suppress the right arrow by adding styles to the `input` element. For specific styles, you can use the following CSS code

    input[type=number]::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
        -webkit-appearance: none; 
        margin: 0; 
    }

This will cancel the right arrow in the `input` element. In Vue, this style can be applied to the `style` tag of the component, or defined in global CSS.

Guess you like

Origin blog.csdn.net/weixin_57163112/article/details/130326434