How does the include of keep-alive write the names of multiple name?

for example, how to write keep-alive, in app.js but do not want to cache other things except detail,?

    <keep-alive exclude="detail">
        <router-view/>
    </keep-alive>
Jan.15,2022

read the document for yourself

exclude="detail,xxx"
:exclude="['detail','xxx']"
Menu