We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
以下是我的操作:
以下是我的代码:
<script setup lang="ts"> import type { DataTableColumns } from 'naive-ui'; const columns = shallowRef<DataTableColumns<any>>([ { title: 'No', key: 'no', width: 50 }, { title: 'Title', key: 'title', resizable: true }, { title: 'Length', key: 'length', resizable: true }, { title: 'Action', key: 'actions' } ]); const data = shallowRef<any[]>([ { no: 3, title: 'Wonderwall', length: '4:18' }, { no: 4, title: "Don't Look Back in Anger", length: '4:48' }, { no: 12, title: 'Champagne Supernova', length: '7:27' } ]); </script> <template> <NDataTable virtual-scroll flex-height :virtual-scroll-x="false" :columns="columns" :data="data" :pagination="false" :bordered="false" /> </template> <style lang="scss" scoped></style>
出现的问题:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
以下是我的操作:
以下是我的代码:
出现的问题:
The text was updated successfully, but these errors were encountered: