merge 3rdparty assets

This commit is contained in:
pypy
2020-06-26 20:02:15 +09:00
parent cca42974fe
commit 86ecc9c59a
6 changed files with 39 additions and 15 deletions

View File

@@ -4,6 +4,11 @@
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
import Noty from 'noty';
import Vue from 'vue';
import ElementUI from 'element-ui';
import locale from 'element-ui/lib/locale/lang/en';
CefSharp.BindObjectAsync(
'VRCX',
'VRCXStorage',
@@ -77,6 +82,10 @@ CefSharp.BindObjectAsync(
timeout: 6000
});
Vue.use(ElementUI, {
locale
});
var escapeTag = (s) => String(s).replace(/["&'<>]/gu, (c) => `&#${c.charCodeAt(0)};`);
Vue.filter('escapeTag', escapeTag);