the code is as follows: <no-ssr placeholder="" v-highlight> {{mycode}}<code style="atom-one-dark" :class="myCodeClass">{{mycode}} < no-ssr > const hljs = require( highlight.js ); Vue.directive(...
how to center the numbers in the picture as a whole, but each number is aligned to the right, that is, the percent sign ...
multilingual secondary directory, http: xx.com lang link , How to automatically add lang, to the link address of the page, such as http: xx.com lang xxx...
Open the webpack.optimize.ModuleConcatenationPlugin plug-in. The page cannot be accessed after the production environment is packaged. The error is as follows: Uncaught TypeError: Cannot read property call of undefined at b (bootstrap a00833d57...
...
such as arrA = [1, 2, 3, 4, 5]; arrB = [1, 1, 2, 3, 3]; want arrB to become [1, 1, 2, 3, 3, 4, 5] the first idea is to first use a temporary array to save the non-repeating elements in the array AB, and then push them into arrB one by one. is more ...