Home > Article > Web Front-end > Vue sets a certain rounded corner
Vue is an extremely popular front-end framework. Its simplicity, ease of use and rich extensibility make it one of the first choices for templated frameworks. In Vue, you sometimes encounter the need to set a certain rounded corner. This article will introduce several ways to achieve this requirement.
1. Use the CSS attribute selector
Use the CSS attribute selector in the template to select the elements that need to be rounded, and then use the border-radius attribute in the style. . As shown below:
<template> <div class="box" v-bind:class="{ 'rounded-corner': isRound }"> ... <!-- 元素内容 --> </div> </template> <style> .box { /* 其他样式 */ } .rounded-corner { border-radius: 10px; } </style>
In the above code, we use the v-bind:class directive in the template to decide whether to add the class name 'rounded-corner' to the element based on the value of isRound. The size of the rounded corners is set through the border-radius attribute in the style of this class name.
2. Use v-bind and style
In addition to using CSS attribute selectors, we can also use v-bind and style to dynamically bind the size of the fillet. The code is as follows:
<template> <div class="box" v-bind:style="{ 'border-radius': borderRadius + 'px' }"> ... <!-- 元素内容 --> </div> </template> <script> export default { data() { return { borderRadius: 10 // 圆角半径的初始值,也可以从父组件中传入 } } } </script> <style> .box { /* 其他样式 */ } </style>
In the above code, we use the v-bind:style directive to bind the style of the element, and then bind the border-radius attribute through the calculated attribute in the style object. In this way, we can dynamically change the fillet size of the element by changing the value of borderRadius in the data attribute.
3. Use custom instructions
In addition to using instructions and style binding in the template to implement the rounded corner function, we can also use custom instructions to implement this function. The code is as follows:
<template> <div class="box" v-custom-rounded-corner="borderRadius"> ... <!-- 元素内容 --> </div> </template> <script> export default { directives: { 'custom-rounded-corner': { bind(el, binding) { el.style.borderRadius = binding.value + 'px' }, update(el, binding) { el.style.borderRadius = binding.value + 'px' } } }, data() { return { borderRadius: 10 // 圆角半径的初始值,也可以从父组件中传入 } } } </script> <style> .box { /* 其他样式 */ } </style>
In the above code, we add custom instructions to the elements through the v-custom-rounded-corner instruction, and dynamically set the style of the element in the bind and update functions of the instruction. In this way, we can also dynamically change the fillet size of the element by changing the value of borderRadius in the data attribute.
4. Summary
The above three methods can be used to achieve the need to set a certain rounded corner in Vue. The same effect can be achieved using CSS attribute selectors, v-bind and style, and custom directives. Which method to choose depends on your project needs and personal habits. I hope this article can help you implement rounded corners in Vue.
The above is the detailed content of Vue sets a certain rounded corner. For more information, please follow other related articles on the PHP Chinese website!