diff --git a/admin/dashboard/templates/file_browser.html b/admin/dashboard/templates/file_browser.html
index ca1f8a7..dbbb404 100644
--- a/admin/dashboard/templates/file_browser.html
+++ b/admin/dashboard/templates/file_browser.html
@@ -33,20 +33,20 @@
- [[ scope.row.name ]]
+ {% raw %}{{ scope.row.name }}{% endraw %}
- [[ scope.row.is_dir ? '目录' : '文件' ]]
+ {% raw %}{{ scope.row.is_dir ? '目录' : '文件' }}{% endraw %}
- [[ scope.row.is_dir ? '-' : formatFileSize(scope.row.size) ]]
+ {% raw %}{{ scope.row.is_dir ? '-' : formatFileSize(scope.row.size) }}{% endraw %}
- [[ formatDate(scope.row.modified) ]]
+ {% raw %}{{ formatDate(scope.row.modified) }}{% endraw %}
@@ -63,7 +63,6 @@
new Vue({
el: '#app',
mixins: [baseApp],
- delimiters: ['[[', ']]'],
data() {
return {
currentPath: '',