import codecs file_path = r'd:\\骅锋\\mall\\layouts\\admin\\AdminLayout.uvue' with codecs.open(file_path, 'r', 'utf-8') as f: text = f.read() text = text.replace('const hasAccess = computed(() => {', 'const hasAccess = computed(() => {\n console.log([AdminLayout] Computing hasAccess for: );') with codecs.open(file_path, 'w', 'utf-8') as f: f.write(text)