oauth2 nodejs vue

https://www.ory.sh/docs/hydra/integration#interacting-with-oauth-20 https://github.com/lelylan/simple-oauth2 https://www.jianshu.com/p/5cf2b7a45b75

2019-08-05 · 1 min · 3 words · Me

windows iso

http://windowsiso.net/

2019-08-02 · 1 min · word · Me

vue 3 image assets

Vue template Code src/ooxx/ooxx/xx.vue assets File location:assets/img/tt.png OK Code: img src=’@/assets/img/tt.png' Become: img src="/img/tt.f3b936ef.png" Failed Code: img src=’@/img/nchcbclab.png' img src=‘assets/img/tt.png’ img src=’./assets/img/tt.png’ img src=’../assets/img/tt.png’ img src=“require(‘assets/img/tt.png’) " img src=“require(’./assets/img/tt.png’) " img src=“require(’../assets/img/tt.png’) " public File location:public/img/tt.png OK Code: img src= ‘/img/nchcbclab.png’ Become: img src= ‘/img/nchcbclab.png’ Failed Code: img src= ‘img/nchcbclab.png’ img src= ‘public/img/nchcbclab.png’ img src=’/public/img/nchcbclab.png’

2019-08-02 · 1 min · 55 words · Me

vue 3 index.html

old vue index.html just copy to public directory. If public don’t have index.hmtl, be craeted by run “npm run serve”. But public don’t have index.html. Only “npm run build” create index.html in dist driectory. More easy understand way: You delete all project index.html. This time still can run “npm run serve”. Watch Website source code Vue App Then put your custome into public directory then Custome App ooxxooxx

2019-08-02 · 1 min · 68 words · Me

vue babel 7

https://github.com/storybookjs/storybook/issues/5298 https://github.com/webpack/webpack/issues/4039 https://github.com/gmfe/Think/issues/67 Cannot assign to read only property ’exports’ of object ‘#’ babel.config.js 'sourceType': 'unambiguous', // 自动推断编译的模块类型(cjs,es6) 'ignore': [/@babel[/\\]runtime/], // 忽略 @babel/runtime Full code module.exports = { 'sourceType': 'unambiguous', // 自动推断编译的模块类型(cjs,es6) 'ignore': [/@babel[/\\]runtime/], // 忽略 @babel/runtime presets: [ '@vue/app' ] }

2019-08-02 · 1 min · 42 words · Me