- Removed conditional rendering for the assistant guide bar. - Simplified strategy overview and strategy list item components. - Introduced a new modal for selecting strategy mode. - Enhanced strategy creation modal to support script strategies with a dedicated editor. - Updated form handling for script strategies, including validation and submission logic. - Improved user experience with better messaging and streamlined UI components. - Updated translations for better clarity in Chinese.
12 lines
342 B
JavaScript
12 lines
342 B
JavaScript
/**
|
|
* Custom icon list
|
|
* All icons are loaded here for easy management
|
|
* @see https://vue.ant.design/components/icon/#Custom-Font-Icon
|
|
*
|
|
* Custom icon registry
|
|
* All icons are loaded here for easier management
|
|
*/
|
|
import bxAnaalyse from '@/assets/icons/bx-analyse.svg?inline' // path to your '*.svg?inline' file.
|
|
|
|
export { bxAnaalyse }
|