We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const imgReg = /<img\s[^>]?src\s=\s*'"['"][^>]?>/g 改为 const imgReg = /<img\s[^>]?src\s*=\s*'"['"][^>]*?>/g 就好了
再就是要自己在装下vuex-router-sync
整个程序就能启动了。
The text was updated successfully, but these errors were encountered:
index/store.js const mutations = { SET_ARTICLES (state, date, arr) { state.days.push({ date: date, articles: arr }) }, SET_DATE_POINTER (state, value) { state.datePointer = value }, SET_THEMES (state, arr) { state.themes = arr } }
Sorry, something went wrong.
@torresyb 看来忘了添加 vuex-router-sync 依赖了
No branches or pull requests
const imgReg = /<img\s[^>]?src\s=\s*'"['"][^>]?>/g
改为
const imgReg = /<img\s[^>]?src\s*=\s*'"['"][^>]*?>/g
就好了
再就是要自己在装下vuex-router-sync
整个程序就能启动了。
The text was updated successfully, but these errors were encountered: