|
|
@@ -127,6 +127,10 @@ Set custom icons through icon and rotate to set the rotation angle of icons
|
|
|
import { reactive, ref, toRefs } from 'vue';
|
|
|
import { Notice, Follow } from '@nutui/icons-vue';
|
|
|
export default {
|
|
|
+ components: {
|
|
|
+ Notice,
|
|
|
+ Follow
|
|
|
+ },
|
|
|
setup() {
|
|
|
const activeName = ref(1);
|
|
|
const title = reactive({
|
|
|
@@ -136,8 +140,6 @@ export default {
|
|
|
return {
|
|
|
activeName,
|
|
|
...toRefs(title),
|
|
|
- Notice,
|
|
|
- Follow
|
|
|
};
|
|
|
}
|
|
|
}
|