I am working on Element UI tables and I am trying to include a tooltip for one of my columns, however I can not figure out how to retrieve the prop to display it within the tooltip.
<el-table-column
label="Service Lines / MSDRG"
prop="code"
sortable
>
<el-tooltip effect="dark" placement="top-start" content="some content here">
{{code}}
</el-tooltip>
</el-table-column>
Is there a way to get the code value to display within the <el-tooltip>?