How do html hyperlink addresses use variables?

use v-for loop to output variables, the variable is the hyperlink href address, curnew.url is the stored url address, how to write href? The related code is as follows:

        <el-col :offset="4" :span="16" v-for="curnew in news" :key="curnew.id" style="margin-bottom:30px">
            

<a href=curnew.url target="_blank"><font size="4">{{curnew.title}}</font></a>

</el-col>
Mar.14,2021

    <el-col :offset="4" :span="16" v-for="curnew in news" :key="curnew.id" style="margin-bottom:30px">
        

<a :href="curnew.url" target="_blank"><font size="4">{{curnew.title}}</font></a>

</el-col>
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b38741-2c10a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b38741-2c10a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?